@shopware-ag/acceptance-test-suite 3.5.0 → 3.6.0
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -762,6 +762,7 @@ interface PageObject {
|
|
|
762
762
|
declare class Home implements PageObject {
|
|
763
763
|
readonly page: Page;
|
|
764
764
|
readonly productImages: Locator;
|
|
765
|
+
readonly productListItems: Locator;
|
|
765
766
|
constructor(page: Page);
|
|
766
767
|
url(): string;
|
|
767
768
|
}
|
|
@@ -772,6 +773,7 @@ declare class ProductDetail$1 implements PageObject {
|
|
|
772
773
|
readonly quantitySelect: Locator;
|
|
773
774
|
readonly productSingleImage: Locator;
|
|
774
775
|
readonly productSinglePrice: Locator;
|
|
776
|
+
readonly productPriceRangesRow: Locator;
|
|
775
777
|
readonly offCanvasCartTitle: Locator;
|
|
776
778
|
readonly offCanvasCart: Locator;
|
|
777
779
|
readonly offCanvasCartGoToCheckoutButton: Locator;
|
package/dist/index.d.ts
CHANGED
|
@@ -762,6 +762,7 @@ interface PageObject {
|
|
|
762
762
|
declare class Home implements PageObject {
|
|
763
763
|
readonly page: Page;
|
|
764
764
|
readonly productImages: Locator;
|
|
765
|
+
readonly productListItems: Locator;
|
|
765
766
|
constructor(page: Page);
|
|
766
767
|
url(): string;
|
|
767
768
|
}
|
|
@@ -772,6 +773,7 @@ declare class ProductDetail$1 implements PageObject {
|
|
|
772
773
|
readonly quantitySelect: Locator;
|
|
773
774
|
readonly productSingleImage: Locator;
|
|
774
775
|
readonly productSinglePrice: Locator;
|
|
776
|
+
readonly productPriceRangesRow: Locator;
|
|
775
777
|
readonly offCanvasCartTitle: Locator;
|
|
776
778
|
readonly offCanvasCart: Locator;
|
|
777
779
|
readonly offCanvasCartGoToCheckoutButton: Locator;
|
package/dist/index.mjs
CHANGED
|
@@ -2246,7 +2246,9 @@ class Home {
|
|
|
2246
2246
|
constructor(page) {
|
|
2247
2247
|
this.page = page;
|
|
2248
2248
|
__publicField$o(this, "productImages");
|
|
2249
|
+
__publicField$o(this, "productListItems");
|
|
2249
2250
|
this.productImages = page.locator(".product-image-link");
|
|
2251
|
+
this.productListItems = page.getByRole("listitem");
|
|
2250
2252
|
}
|
|
2251
2253
|
url() {
|
|
2252
2254
|
return "./";
|
|
@@ -2266,6 +2268,7 @@ let ProductDetail$1 = class ProductDetail {
|
|
|
2266
2268
|
__publicField$n(this, "quantitySelect");
|
|
2267
2269
|
__publicField$n(this, "productSingleImage");
|
|
2268
2270
|
__publicField$n(this, "productSinglePrice");
|
|
2271
|
+
__publicField$n(this, "productPriceRangesRow");
|
|
2269
2272
|
__publicField$n(this, "offCanvasCartTitle");
|
|
2270
2273
|
__publicField$n(this, "offCanvasCart");
|
|
2271
2274
|
__publicField$n(this, "offCanvasCartGoToCheckoutButton");
|
|
@@ -2276,6 +2279,7 @@ let ProductDetail$1 = class ProductDetail {
|
|
|
2276
2279
|
this.quantitySelect = page.getByLabel("Quantity", { exact: true });
|
|
2277
2280
|
this.productSingleImage = page.locator(".gallery-slider-single-image");
|
|
2278
2281
|
this.productSinglePrice = page.locator(".product-detail-price");
|
|
2282
|
+
this.productPriceRangesRow = page.locator(".product-block-prices-row > th");
|
|
2279
2283
|
this.offCanvas = page.locator("offcanvas-body");
|
|
2280
2284
|
this.offCanvasCartTitle = page.getByText("Shopping cart", { exact: true });
|
|
2281
2285
|
this.offCanvasCart = page.getByRole("dialog");
|