@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.
- package/dist/index.mjs +6 -6
- 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.
|
|
4600
|
-
this.propertyOptionColorRed = this.propertyOptionGrid.
|
|
4601
|
-
this.propertyOptionColorGreen = this.propertyOptionGrid.
|
|
4602
|
-
this.propertyOptionSizeSmall = this.propertyOptionGrid.
|
|
4603
|
-
this.propertyOptionSizeMedium = this.propertyOptionGrid.
|
|
4604
|
-
this.propertyOptionSizeLarge = this.propertyOptionGrid.
|
|
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");
|