@shopware-ag/acceptance-test-suite 12.8.0 → 12.8.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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +7 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2116,6 +2116,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
2116
2116
|
skipToContentLink: string;
|
|
2117
2117
|
searchInputAriaLabel: string;
|
|
2118
2118
|
wishlistIcon: string;
|
|
2119
|
+
shoppingCart: string;
|
|
2119
2120
|
};
|
|
2120
2121
|
readonly "storefront/home": {
|
|
2121
2122
|
account: {
|
|
@@ -3097,6 +3098,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
3097
3098
|
skipToContentLink: string;
|
|
3098
3099
|
searchInputAriaLabel: string;
|
|
3099
3100
|
wishlistIcon: string;
|
|
3101
|
+
shoppingCart: string;
|
|
3100
3102
|
};
|
|
3101
3103
|
readonly "storefront/home": {
|
|
3102
3104
|
account: {
|
|
@@ -4084,6 +4086,7 @@ declare const baseNamespaces: {
|
|
|
4084
4086
|
skipToContentLink: string;
|
|
4085
4087
|
searchInputAriaLabel: string;
|
|
4086
4088
|
wishlistIcon: string;
|
|
4089
|
+
shoppingCart: string;
|
|
4087
4090
|
};
|
|
4088
4091
|
readonly home: {
|
|
4089
4092
|
account: {
|
package/dist/index.d.ts
CHANGED
|
@@ -2116,6 +2116,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
2116
2116
|
skipToContentLink: string;
|
|
2117
2117
|
searchInputAriaLabel: string;
|
|
2118
2118
|
wishlistIcon: string;
|
|
2119
|
+
shoppingCart: string;
|
|
2119
2120
|
};
|
|
2120
2121
|
readonly "storefront/home": {
|
|
2121
2122
|
account: {
|
|
@@ -3097,6 +3098,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
3097
3098
|
skipToContentLink: string;
|
|
3098
3099
|
searchInputAriaLabel: string;
|
|
3099
3100
|
wishlistIcon: string;
|
|
3101
|
+
shoppingCart: string;
|
|
3100
3102
|
};
|
|
3101
3103
|
readonly "storefront/home": {
|
|
3102
3104
|
account: {
|
|
@@ -4084,6 +4086,7 @@ declare const baseNamespaces: {
|
|
|
4084
4086
|
skipToContentLink: string;
|
|
4085
4087
|
searchInputAriaLabel: string;
|
|
4086
4088
|
wishlistIcon: string;
|
|
4089
|
+
shoppingCart: string;
|
|
4087
4090
|
};
|
|
4088
4091
|
readonly home: {
|
|
4089
4092
|
account: {
|
package/dist/index.mjs
CHANGED
|
@@ -1599,13 +1599,15 @@ const languageDropdown$1 = "Change language";
|
|
|
1599
1599
|
const skipToContentLink$1 = "Skip to main content";
|
|
1600
1600
|
const searchInputAriaLabel$1 = "Enter search term...";
|
|
1601
1601
|
const wishlistIcon$1 = "Wishlist";
|
|
1602
|
+
const shoppingCart$1 = "Shopping cart";
|
|
1602
1603
|
const storefrontHeader = {
|
|
1603
1604
|
topBarNav: topBarNav$1,
|
|
1604
1605
|
currencyDropdown: currencyDropdown$1,
|
|
1605
1606
|
languageDropdown: languageDropdown$1,
|
|
1606
1607
|
skipToContentLink: skipToContentLink$1,
|
|
1607
1608
|
searchInputAriaLabel: searchInputAriaLabel$1,
|
|
1608
|
-
wishlistIcon: wishlistIcon$1
|
|
1609
|
+
wishlistIcon: wishlistIcon$1,
|
|
1610
|
+
shoppingCart: shoppingCart$1
|
|
1609
1611
|
};
|
|
1610
1612
|
|
|
1611
1613
|
const account$1 = {
|
|
@@ -2795,13 +2797,15 @@ const languageDropdown = "Sprache ändern";
|
|
|
2795
2797
|
const skipToContentLink = "Zum Hauptinhalt springen";
|
|
2796
2798
|
const searchInputAriaLabel = "Suchbegriff eingeben ...";
|
|
2797
2799
|
const wishlistIcon = "Merkzettel";
|
|
2800
|
+
const shoppingCart = "Warenkorb";
|
|
2798
2801
|
const deStorefrontHeader = {
|
|
2799
2802
|
topBarNav: topBarNav,
|
|
2800
2803
|
currencyDropdown: currencyDropdown,
|
|
2801
2804
|
languageDropdown: languageDropdown,
|
|
2802
2805
|
skipToContentLink: skipToContentLink,
|
|
2803
2806
|
searchInputAriaLabel: searchInputAriaLabel,
|
|
2804
|
-
wishlistIcon: wishlistIcon
|
|
2807
|
+
wishlistIcon: wishlistIcon,
|
|
2808
|
+
shoppingCart: shoppingCart
|
|
2805
2809
|
};
|
|
2806
2810
|
|
|
2807
2811
|
const account = {
|
|
@@ -7899,7 +7903,7 @@ class Header {
|
|
|
7899
7903
|
this.skipToMainContentLink = page.getByRole("link", { name: translate("storefront:header:skipToContentLink"), exact: true });
|
|
7900
7904
|
this.wishlistIcon = page.getByRole("link", { name: translate("storefront:header:wishlistIcon") });
|
|
7901
7905
|
this.wishlistBasket = page.locator(".header-wishlist-badge");
|
|
7902
|
-
this.cartTotal = page.
|
|
7906
|
+
this.cartTotal = page.getByRole("link", { name: translate("storefront:header:shoppingCart") });
|
|
7903
7907
|
}
|
|
7904
7908
|
url() {
|
|
7905
7909
|
throw new Error("Header does not have an own url.");
|