@shopware-ag/acceptance-test-suite 11.7.2 → 11.8.0
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 +3 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4828,10 +4828,11 @@ class CustomerGroupCreate {
|
|
|
4828
4828
|
this.signupFormTitle = page.locator("#sw-field--customerGroup-registrationTitle");
|
|
4829
4829
|
if (satisfies(instanceMeta.version, "<6.7")) {
|
|
4830
4830
|
this.signupFormIntroduction = page.locator(".sw-text-editor__content-editor");
|
|
4831
|
+
this.signupFormSeoDescription = page.locator("#sw-field--customerGroup-registrationSeoMetaDescription");
|
|
4831
4832
|
} else {
|
|
4832
4833
|
this.signupFormIntroduction = page.locator(".mt-text-editor__content-editor");
|
|
4834
|
+
this.signupFormSeoDescription = page.getByRole("textbox", { name: "SEO meta description" });
|
|
4833
4835
|
}
|
|
4834
|
-
this.signupFormSeoDescription = page.locator("#sw-field--customerGroup-registrationSeoMetaDescription");
|
|
4835
4836
|
this.signupFormCompanySignupToggle = page.getByLabel("Company signup form");
|
|
4836
4837
|
this.customerGroupSaleschannelSelection = page.locator("input[class=sw-select-selection-list__input]");
|
|
4837
4838
|
this.customerGroupSaleschannelResultList = page.locator(".sw-select-result-list__content");
|
|
@@ -5387,7 +5388,7 @@ class Categories {
|
|
|
5387
5388
|
this.categoryTree = page.locator(".sw-category-tree");
|
|
5388
5389
|
this.categoryMenuItemList = page.locator(".sw-context-menu-item");
|
|
5389
5390
|
this.createCategoryInput = page.getByPlaceholder("Create category").getByRole("textbox");
|
|
5390
|
-
this.confirmCategoryCreationButton = page.locator(".sw-confirm-field").locator(".sw-
|
|
5391
|
+
this.confirmCategoryCreationButton = page.locator(".sw-confirm-field").locator(".sw-confirm-field__button--submit");
|
|
5391
5392
|
this.categoryItems = this.categoryTree.locator(".tree-link");
|
|
5392
5393
|
this.confirmCategoryCancelButton = page.locator(".sw-confirm-field").locator(".sw-confirm-field__button--cancel");
|
|
5393
5394
|
this.nameInput = page.getByLabel("Name");
|