@shopware-ag/acceptance-test-suite 11.19.0 → 11.19.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.
- package/dist/index.mjs +6 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5225,11 +5225,14 @@ class CustomerGroupCreate {
|
|
|
5225
5225
|
this.customerGroupNetTaxDisplay = page.locator("#sw-field--castedValue-1");
|
|
5226
5226
|
this.customSignupFormToggle = page.getByLabel("Custom signup form");
|
|
5227
5227
|
this.signupFormTitle = page.locator("#sw-field--customerGroup-registrationTitle");
|
|
5228
|
-
if (satisfies(instanceMeta.version, "<6.
|
|
5228
|
+
if (satisfies(instanceMeta.version, "<6.8")) {
|
|
5229
5229
|
this.signupFormIntroduction = page.locator(".sw-text-editor__content-editor");
|
|
5230
|
-
this.signupFormSeoDescription = page.locator("#sw-field--customerGroup-registrationSeoMetaDescription");
|
|
5231
5230
|
} else {
|
|
5232
5231
|
this.signupFormIntroduction = page.locator(".mt-text-editor__content-editor");
|
|
5232
|
+
}
|
|
5233
|
+
if (satisfies(instanceMeta.version, "<6.7")) {
|
|
5234
|
+
this.signupFormSeoDescription = page.locator("#sw-field--customerGroup-registrationSeoMetaDescription");
|
|
5235
|
+
} else {
|
|
5233
5236
|
this.signupFormSeoDescription = page.getByRole("textbox", { name: "SEO meta description" });
|
|
5234
5237
|
}
|
|
5235
5238
|
this.signupFormCompanySignupToggle = page.getByLabel("Company signup form");
|
|
@@ -6270,7 +6273,7 @@ class ManufacturerCreate {
|
|
|
6270
6273
|
this.cancelButton = page.getByRole("button", { name: "Cancel" });
|
|
6271
6274
|
this.nameInput = page.getByLabel("Name");
|
|
6272
6275
|
this.websiteInput = page.getByLabel("Website");
|
|
6273
|
-
if (satisfies(instanceMeta.version, "<6.
|
|
6276
|
+
if (satisfies(instanceMeta.version, "<6.8")) {
|
|
6274
6277
|
this.descriptionInput = page.locator(".sw-text-editor__content-editor");
|
|
6275
6278
|
} else {
|
|
6276
6279
|
this.descriptionInput = page.locator(".mt-text-editor__content-editor");
|