@shopware-ag/acceptance-test-suite 12.18.1 → 12.18.3
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.
- package/dist/index.mjs +7 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6669,7 +6669,11 @@ class TestDataService {
|
|
|
6669
6669
|
salesChannelId,
|
|
6670
6670
|
currencyId,
|
|
6671
6671
|
languageId,
|
|
6672
|
-
snippetSetId
|
|
6672
|
+
snippetSetId,
|
|
6673
|
+
salesChannel: {
|
|
6674
|
+
id: salesChannelId,
|
|
6675
|
+
currencies: [{ id: currencyId }]
|
|
6676
|
+
}
|
|
6673
6677
|
};
|
|
6674
6678
|
return Object.assign({}, basicSalesChannelDomain, overrides);
|
|
6675
6679
|
}
|
|
@@ -9716,7 +9720,7 @@ class CustomFieldCreate {
|
|
|
9716
9720
|
this.technicalNameInput = page.getByLabel(translate("administration:customField:common.technicalName"));
|
|
9717
9721
|
this.positionInput = page.getByLabel(translate("administration:customField:common.position"));
|
|
9718
9722
|
this.labelEnglishGBInput = page.getByLabel(translate("administration:customField:common.labelEnglishGB"));
|
|
9719
|
-
this.assignToSelectionList = page.
|
|
9723
|
+
this.assignToSelectionList = page.getByRole("combobox", { name: translate("administration:customField:create.assignTo") });
|
|
9720
9724
|
this.resultAssignToPopoverItemList = page.locator(".sw-select-result-list__content").getByRole("listitem");
|
|
9721
9725
|
}
|
|
9722
9726
|
url() {
|
|
@@ -10911,7 +10915,7 @@ class LayoutCreate {
|
|
|
10911
10915
|
this.saveButton = page.getByRole("button", { name: translate("administration:layout:create.save") });
|
|
10912
10916
|
this.fullWidthButton = page.getByRole("button", { name: translate("administration:layout:create.fullWidth") });
|
|
10913
10917
|
this.sidebarButton = page.getByRole("button", { name: translate("administration:layout:create.sidebar") });
|
|
10914
|
-
this.backButton = page.getByRole("button", { name: translate("administration:layout:create.back") });
|
|
10918
|
+
this.backButton = page.locator(".sw-cms-create-wizard").getByRole("button", { name: translate("administration:layout:create.back") });
|
|
10915
10919
|
this.layoutNameInput = page.getByRole("textbox", { name: translate("administration:layout:create.layoutName") });
|
|
10916
10920
|
this.createLayoutButton = page.getByRole("button", { name: translate("administration:layout:create.createLayout") });
|
|
10917
10921
|
}
|