@shopware-ag/acceptance-test-suite 11.11.0 → 11.11.1

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 +6 -6
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -4596,12 +4596,12 @@ class ProductDetail {
4596
4596
  this.propertyGroupColor = this.variantsModal.getByText("Color").first();
4597
4597
  this.propertyGroupSize = this.variantsModal.getByText("Size").first();
4598
4598
  this.propertyOptionGrid = this.variantsModal.locator(".sw-property-search__tree-selection__option_grid");
4599
- this.propertyOptionColorBlue = this.propertyOptionGrid.getByLabel("Blue");
4600
- this.propertyOptionColorRed = this.propertyOptionGrid.getByLabel("Red");
4601
- this.propertyOptionColorGreen = this.propertyOptionGrid.getByLabel("Green");
4602
- this.propertyOptionSizeSmall = this.propertyOptionGrid.getByLabel("Small");
4603
- this.propertyOptionSizeMedium = this.propertyOptionGrid.getByLabel("Medium");
4604
- this.propertyOptionSizeLarge = this.propertyOptionGrid.getByLabel("Large");
4599
+ this.propertyOptionColorBlue = this.propertyOptionGrid.getByRole("row", { name: "Blue" }).getByRole("checkbox");
4600
+ this.propertyOptionColorRed = this.propertyOptionGrid.getByRole("row", { name: "Red" }).getByRole("checkbox");
4601
+ this.propertyOptionColorGreen = this.propertyOptionGrid.getByRole("row", { name: "Green" }).getByRole("checkbox");
4602
+ this.propertyOptionSizeSmall = this.propertyOptionGrid.getByRole("row", { name: "Small" }).getByRole("checkbox");
4603
+ this.propertyOptionSizeMedium = this.propertyOptionGrid.getByRole("row", { name: "Medium" }).getByRole("checkbox");
4604
+ this.propertyOptionSizeLarge = this.propertyOptionGrid.getByRole("row", { name: "Large" }).getByRole("checkbox");
4605
4605
  this.specificationsTabLink = page.getByRole("tab", { name: "Specifications" });
4606
4606
  if (satisfies(instanceMeta.version, "<6.7")) {
4607
4607
  this.customFieldCard = page.locator(".sw-card").getByText("Custom fields");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopware-ag/acceptance-test-suite",
3
- "version": "11.11.0",
3
+ "version": "11.11.1",
4
4
  "description": "Shopware Acceptance Test Suite",
5
5
  "author": "shopware AG",
6
6
  "license": "MIT",