@shopware-ag/acceptance-test-suite 12.7.0 → 12.7.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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -7885,6 +7885,8 @@ class Header {
|
|
|
7885
7885
|
wishlistIcon;
|
|
7886
7886
|
wishlistBasket;
|
|
7887
7887
|
page;
|
|
7888
|
+
//cart
|
|
7889
|
+
cartTotal;
|
|
7888
7890
|
constructor(page) {
|
|
7889
7891
|
this.page = page;
|
|
7890
7892
|
this.mainNavigationLink = page.locator(".main-navigation-link-text");
|
|
@@ -7897,6 +7899,7 @@ class Header {
|
|
|
7897
7899
|
this.skipToMainContentLink = page.getByRole("link", { name: translate("storefront:header:skipToContentLink"), exact: true });
|
|
7898
7900
|
this.wishlistIcon = page.getByRole("link", { name: translate("storefront:header:wishlistIcon") });
|
|
7899
7901
|
this.wishlistBasket = page.locator(".header-wishlist-badge");
|
|
7902
|
+
this.cartTotal = page.locator(".header-cart-total");
|
|
7900
7903
|
}
|
|
7901
7904
|
url() {
|
|
7902
7905
|
throw new Error("Header does not have an own url.");
|