@shopware-ag/acceptance-test-suite 11.19.1 → 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 +4 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5227,9 +5227,12 @@ class CustomerGroupCreate {
|
|
|
5227
5227
|
this.signupFormTitle = page.locator("#sw-field--customerGroup-registrationTitle");
|
|
5228
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");
|