@shopware-ag/acceptance-test-suite 11.7.1 → 11.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.mjs +8 -8
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -4574,10 +4574,10 @@ class ProductDetail {
4574
4574
  this.propertyOptionSizeMedium = this.propertyOptionGrid.getByLabel("Medium");
4575
4575
  this.propertyOptionSizeLarge = this.propertyOptionGrid.getByLabel("Large");
4576
4576
  this.specificationsTabLink = page.getByRole("tab", { name: "Specifications" });
4577
- this.customFieldCard = page.locator(".sw-card").getByText("Custom fields");
4577
+ this.customFieldCard = page.locator(".mt-card").getByText("Custom fields");
4578
4578
  }
4579
4579
  async getCustomFieldSetCardContentByName(customFieldSetName) {
4580
- const customFieldCard = this.page.locator(".sw-card").filter({ hasText: "Custom fields" });
4580
+ const customFieldCard = this.page.locator(".mt-card").filter({ hasText: "Custom fields" });
4581
4581
  const customFieldSetTab = customFieldCard.getByText(customFieldSetName);
4582
4582
  const customFieldSetTabCustomContent = customFieldCard.locator(`.sw-custom-field-set-renderer-tab-content__${customFieldSetName}`);
4583
4583
  return {
@@ -4713,7 +4713,7 @@ class CustomerDetail {
4713
4713
  this.editButton = page.getByRole("button", { name: "Edit" });
4714
4714
  this.generalTab = page.getByRole("link", { name: "General" });
4715
4715
  this.accountCard = page.locator(".sw-customer-card");
4716
- this.customFieldCard = page.locator(".sw-card").getByText("Custom fields");
4716
+ this.customFieldCard = page.locator(".mt-card").getByText("Custom fields");
4717
4717
  this.customFieldSetTabs = this.customFieldCard.locator(".sw-tabs-item");
4718
4718
  this.customFieldSetTabCustomContent = this.customFieldCard.locator(".sw-tabs__custom-content");
4719
4719
  if (satisfies(instanceMeta.version, "<6.7")) {
@@ -4727,7 +4727,7 @@ class CustomerDetail {
4727
4727
  this.tagItems = this.tagList.locator(".sw-select-selection-list__item");
4728
4728
  }
4729
4729
  async getCustomFieldSetCardContentByName(customFieldSetName) {
4730
- const customFieldCard = this.page.locator(".sw-card").filter({ hasText: "Custom fields" });
4730
+ const customFieldCard = this.page.locator(".mt-card").filter({ hasText: "Custom fields" });
4731
4731
  const customFieldSetTab = customFieldCard.getByText(customFieldSetName);
4732
4732
  const customFieldSetTabCustomContent = customFieldCard.locator(`.sw-custom-field-set-renderer-tab-content__${customFieldSetName}`);
4733
4733
  return {
@@ -5574,12 +5574,12 @@ class CategoryDetail {
5574
5574
  __publicField$a(this, "customFieldSetTabCustomContent");
5575
5575
  this.saveButton = page.getByRole("button", { name: "Save" });
5576
5576
  this.cancelButton = page.getByRole("button", { name: "Cancel" });
5577
- this.customFieldCard = page.locator(".sw-card").getByText("Custom fields");
5577
+ this.customFieldCard = page.locator(".mt-card").getByText("Custom fields");
5578
5578
  this.customFieldSetTabs = this.customFieldCard.locator(".sw-tabs-item");
5579
5579
  this.customFieldSetTabCustomContent = this.customFieldCard.locator(".sw-tabs__custom-content");
5580
5580
  }
5581
5581
  async getCustomFieldSetCardContentByName(customFieldSetName) {
5582
- const customFieldCard = this.page.locator(".sw-card").filter({ hasText: "Custom fields" });
5582
+ const customFieldCard = this.page.locator(".mt-card").filter({ hasText: "Custom fields" });
5583
5583
  const customFieldSetTab = customFieldCard.getByText(customFieldSetName);
5584
5584
  const customFieldSetTabCustomContent = customFieldCard.locator(`.sw-custom-field-set-renderer-tab-content__${customFieldSetName}`);
5585
5585
  return {
@@ -5786,12 +5786,12 @@ class ManufacturerDetail extends ManufacturerCreate {
5786
5786
  __publicField$4(this, "customFieldCard");
5787
5787
  __publicField$4(this, "customFieldSetTabs");
5788
5788
  __publicField$4(this, "customFieldSetTabCustomContent");
5789
- this.customFieldCard = page.locator(".sw-card").getByText("Custom fields");
5789
+ this.customFieldCard = page.locator(".mt-card").getByText("Custom fields");
5790
5790
  this.customFieldSetTabs = this.customFieldCard.locator(".sw-tabs-item");
5791
5791
  this.customFieldSetTabCustomContent = this.customFieldCard.locator(".sw-tabs__custom-content");
5792
5792
  }
5793
5793
  async getCustomFieldSetCardContentByName(customFieldSetName) {
5794
- const customFieldCard = this.page.locator(".sw-card").filter({ hasText: "Custom fields" });
5794
+ const customFieldCard = this.page.locator(".mt-card").filter({ hasText: "Custom fields" });
5795
5795
  const customFieldSetTab = customFieldCard.getByText(customFieldSetName);
5796
5796
  const customFieldSetTabCustomContent = customFieldCard.locator(`.sw-custom-field-set-renderer-tab-content__${customFieldSetName}`);
5797
5797
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopware-ag/acceptance-test-suite",
3
- "version": "11.7.1",
3
+ "version": "11.7.2",
4
4
  "description": "Shopware Acceptance Test Suite",
5
5
  "author": "shopware AG",
6
6
  "license": "MIT",