@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.
Files changed (2) hide show
  1. package/dist/index.mjs +4 -1
  2. 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");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopware-ag/acceptance-test-suite",
3
- "version": "11.19.1",
3
+ "version": "11.19.2",
4
4
  "description": "Shopware Acceptance Test Suite",
5
5
  "author": "shopware AG",
6
6
  "license": "MIT",