@shopware-ag/acceptance-test-suite 11.14.0 → 11.15.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 +52 -0
- package/dist/index.d.ts +52 -0
- package/dist/index.mjs +475 -388
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1226,9 +1226,21 @@ declare class Home implements PageObject {
|
|
|
1226
1226
|
readonly closeGuestSessionButton: Locator;
|
|
1227
1227
|
readonly productImages: Locator;
|
|
1228
1228
|
readonly productListItems: Locator;
|
|
1229
|
+
/**
|
|
1230
|
+
* @deprecated Use 'Header/languagesDropdown' instead
|
|
1231
|
+
*/
|
|
1229
1232
|
readonly languagesDropdown: Locator;
|
|
1233
|
+
/**
|
|
1234
|
+
* @deprecated Use 'Header/languagesMenuOptions' instead
|
|
1235
|
+
*/
|
|
1230
1236
|
readonly languagesMenuOptions: Locator;
|
|
1237
|
+
/**
|
|
1238
|
+
* @deprecated Use 'Header/currenciesDropdown' instead
|
|
1239
|
+
*/
|
|
1231
1240
|
readonly currenciesDropdown: Locator;
|
|
1241
|
+
/**
|
|
1242
|
+
* @deprecated Use 'Header/currenciesMenuOptions' instead
|
|
1243
|
+
*/
|
|
1232
1244
|
readonly currenciesMenuOptions: Locator;
|
|
1233
1245
|
readonly consentOnlyTechnicallyRequiredButton: Locator;
|
|
1234
1246
|
readonly consentConfigureButton: Locator;
|
|
@@ -1247,9 +1259,21 @@ declare class Home implements PageObject {
|
|
|
1247
1259
|
readonly consentDialogSaveButton: Locator;
|
|
1248
1260
|
readonly consentCookieBannerContainer: Locator;
|
|
1249
1261
|
readonly offcanvasBackdrop: Locator;
|
|
1262
|
+
/**
|
|
1263
|
+
* @deprecated Use 'Header/mainNavigationLink' instead
|
|
1264
|
+
*/
|
|
1250
1265
|
readonly mainNavigationLink: Locator;
|
|
1266
|
+
/**
|
|
1267
|
+
* @deprecated Use 'Footer/contactFormLink' instead
|
|
1268
|
+
*/
|
|
1251
1269
|
readonly contactFormLink: Locator;
|
|
1270
|
+
/**
|
|
1271
|
+
* @deprecated Use 'Header/wishlistIcon' instead
|
|
1272
|
+
*/
|
|
1252
1273
|
readonly wishlistIcon: Locator;
|
|
1274
|
+
/**
|
|
1275
|
+
* @deprecated Use 'Header/wishlistBasket' instead
|
|
1276
|
+
*/
|
|
1253
1277
|
readonly wishlistBasket: Locator;
|
|
1254
1278
|
constructor(page: Page);
|
|
1255
1279
|
getMenuItemByCategoryName(categoryName: string): Promise<Record<string, Locator>>;
|
|
@@ -1655,6 +1679,30 @@ declare class Wishlist extends Home implements PageObject {
|
|
|
1655
1679
|
url(): string;
|
|
1656
1680
|
}
|
|
1657
1681
|
|
|
1682
|
+
declare class Footer implements PageObject {
|
|
1683
|
+
readonly page: Page;
|
|
1684
|
+
readonly footerHeadline: Locator;
|
|
1685
|
+
readonly footerContent: Locator;
|
|
1686
|
+
readonly footerHotline: Locator;
|
|
1687
|
+
readonly footerContactForm: Locator;
|
|
1688
|
+
readonly footerContactFormLink: Locator;
|
|
1689
|
+
constructor(page: Page);
|
|
1690
|
+
url(): string;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
declare class Header implements PageObject {
|
|
1694
|
+
readonly page: Page;
|
|
1695
|
+
readonly mainNavigationLink: Locator;
|
|
1696
|
+
readonly languagesDropdown: Locator;
|
|
1697
|
+
readonly languagesMenuOptions: Locator;
|
|
1698
|
+
readonly currenciesDropdown: Locator;
|
|
1699
|
+
readonly currenciesMenuOptions: Locator;
|
|
1700
|
+
readonly wishlistIcon: Locator;
|
|
1701
|
+
readonly wishlistBasket: Locator;
|
|
1702
|
+
constructor(page: Page);
|
|
1703
|
+
url(): string;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1658
1706
|
interface StorefrontPageTypes {
|
|
1659
1707
|
StorefrontHome: Home;
|
|
1660
1708
|
StorefrontProductDetail: ProductDetail$1;
|
|
@@ -1679,6 +1727,8 @@ interface StorefrontPageTypes {
|
|
|
1679
1727
|
StorefrontPageNotFound: PageNotFound;
|
|
1680
1728
|
StorefrontContactForm: ContactForm;
|
|
1681
1729
|
StorefrontWishlist: Wishlist;
|
|
1730
|
+
StorefrontFooter: Footer;
|
|
1731
|
+
StorefrontHeader: Header;
|
|
1682
1732
|
}
|
|
1683
1733
|
declare const StorefrontPageObjects: {
|
|
1684
1734
|
Home: typeof Home;
|
|
@@ -1704,6 +1754,8 @@ declare const StorefrontPageObjects: {
|
|
|
1704
1754
|
PageNotFound: typeof PageNotFound;
|
|
1705
1755
|
ContactForm: typeof ContactForm;
|
|
1706
1756
|
Wishlist: typeof Wishlist;
|
|
1757
|
+
Footer: typeof Footer;
|
|
1758
|
+
Header: typeof Header;
|
|
1707
1759
|
};
|
|
1708
1760
|
|
|
1709
1761
|
declare class ProductDetail implements PageObject {
|
package/dist/index.d.ts
CHANGED
|
@@ -1226,9 +1226,21 @@ declare class Home implements PageObject {
|
|
|
1226
1226
|
readonly closeGuestSessionButton: Locator;
|
|
1227
1227
|
readonly productImages: Locator;
|
|
1228
1228
|
readonly productListItems: Locator;
|
|
1229
|
+
/**
|
|
1230
|
+
* @deprecated Use 'Header/languagesDropdown' instead
|
|
1231
|
+
*/
|
|
1229
1232
|
readonly languagesDropdown: Locator;
|
|
1233
|
+
/**
|
|
1234
|
+
* @deprecated Use 'Header/languagesMenuOptions' instead
|
|
1235
|
+
*/
|
|
1230
1236
|
readonly languagesMenuOptions: Locator;
|
|
1237
|
+
/**
|
|
1238
|
+
* @deprecated Use 'Header/currenciesDropdown' instead
|
|
1239
|
+
*/
|
|
1231
1240
|
readonly currenciesDropdown: Locator;
|
|
1241
|
+
/**
|
|
1242
|
+
* @deprecated Use 'Header/currenciesMenuOptions' instead
|
|
1243
|
+
*/
|
|
1232
1244
|
readonly currenciesMenuOptions: Locator;
|
|
1233
1245
|
readonly consentOnlyTechnicallyRequiredButton: Locator;
|
|
1234
1246
|
readonly consentConfigureButton: Locator;
|
|
@@ -1247,9 +1259,21 @@ declare class Home implements PageObject {
|
|
|
1247
1259
|
readonly consentDialogSaveButton: Locator;
|
|
1248
1260
|
readonly consentCookieBannerContainer: Locator;
|
|
1249
1261
|
readonly offcanvasBackdrop: Locator;
|
|
1262
|
+
/**
|
|
1263
|
+
* @deprecated Use 'Header/mainNavigationLink' instead
|
|
1264
|
+
*/
|
|
1250
1265
|
readonly mainNavigationLink: Locator;
|
|
1266
|
+
/**
|
|
1267
|
+
* @deprecated Use 'Footer/contactFormLink' instead
|
|
1268
|
+
*/
|
|
1251
1269
|
readonly contactFormLink: Locator;
|
|
1270
|
+
/**
|
|
1271
|
+
* @deprecated Use 'Header/wishlistIcon' instead
|
|
1272
|
+
*/
|
|
1252
1273
|
readonly wishlistIcon: Locator;
|
|
1274
|
+
/**
|
|
1275
|
+
* @deprecated Use 'Header/wishlistBasket' instead
|
|
1276
|
+
*/
|
|
1253
1277
|
readonly wishlistBasket: Locator;
|
|
1254
1278
|
constructor(page: Page);
|
|
1255
1279
|
getMenuItemByCategoryName(categoryName: string): Promise<Record<string, Locator>>;
|
|
@@ -1655,6 +1679,30 @@ declare class Wishlist extends Home implements PageObject {
|
|
|
1655
1679
|
url(): string;
|
|
1656
1680
|
}
|
|
1657
1681
|
|
|
1682
|
+
declare class Footer implements PageObject {
|
|
1683
|
+
readonly page: Page;
|
|
1684
|
+
readonly footerHeadline: Locator;
|
|
1685
|
+
readonly footerContent: Locator;
|
|
1686
|
+
readonly footerHotline: Locator;
|
|
1687
|
+
readonly footerContactForm: Locator;
|
|
1688
|
+
readonly footerContactFormLink: Locator;
|
|
1689
|
+
constructor(page: Page);
|
|
1690
|
+
url(): string;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
declare class Header implements PageObject {
|
|
1694
|
+
readonly page: Page;
|
|
1695
|
+
readonly mainNavigationLink: Locator;
|
|
1696
|
+
readonly languagesDropdown: Locator;
|
|
1697
|
+
readonly languagesMenuOptions: Locator;
|
|
1698
|
+
readonly currenciesDropdown: Locator;
|
|
1699
|
+
readonly currenciesMenuOptions: Locator;
|
|
1700
|
+
readonly wishlistIcon: Locator;
|
|
1701
|
+
readonly wishlistBasket: Locator;
|
|
1702
|
+
constructor(page: Page);
|
|
1703
|
+
url(): string;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1658
1706
|
interface StorefrontPageTypes {
|
|
1659
1707
|
StorefrontHome: Home;
|
|
1660
1708
|
StorefrontProductDetail: ProductDetail$1;
|
|
@@ -1679,6 +1727,8 @@ interface StorefrontPageTypes {
|
|
|
1679
1727
|
StorefrontPageNotFound: PageNotFound;
|
|
1680
1728
|
StorefrontContactForm: ContactForm;
|
|
1681
1729
|
StorefrontWishlist: Wishlist;
|
|
1730
|
+
StorefrontFooter: Footer;
|
|
1731
|
+
StorefrontHeader: Header;
|
|
1682
1732
|
}
|
|
1683
1733
|
declare const StorefrontPageObjects: {
|
|
1684
1734
|
Home: typeof Home;
|
|
@@ -1704,6 +1754,8 @@ declare const StorefrontPageObjects: {
|
|
|
1704
1754
|
PageNotFound: typeof PageNotFound;
|
|
1705
1755
|
ContactForm: typeof ContactForm;
|
|
1706
1756
|
Wishlist: typeof Wishlist;
|
|
1757
|
+
Footer: typeof Footer;
|
|
1758
|
+
Header: typeof Header;
|
|
1707
1759
|
};
|
|
1708
1760
|
|
|
1709
1761
|
declare class ProductDetail implements PageObject {
|