@shopware-ag/acceptance-test-suite 11.14.0 → 11.15.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 +86 -1
- package/dist/index.d.ts +86 -1
- package/dist/index.mjs +542 -388
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -244,6 +244,14 @@ type Product = Omit<components['schemas']['Product'], 'price' | 'prices' | 'opti
|
|
|
244
244
|
visibilities?: Record<string, unknown>[];
|
|
245
245
|
variantListingConfig?: VariantListingConfig;
|
|
246
246
|
};
|
|
247
|
+
type ProductReview = components['schemas']['ProductReview'] & {
|
|
248
|
+
id: string;
|
|
249
|
+
productId: string;
|
|
250
|
+
salesChannelId: string;
|
|
251
|
+
title: string;
|
|
252
|
+
content: string;
|
|
253
|
+
points: number;
|
|
254
|
+
};
|
|
247
255
|
type OrderDelivery = Omit<components['schemas']['OrderDelivery'], 'shippingOrderAddress' | 'shippingCosts'> & {
|
|
248
256
|
id: string;
|
|
249
257
|
shippingOrderAddress: Partial<components['schemas']['OrderAddress']>;
|
|
@@ -585,6 +593,13 @@ declare class TestDataService {
|
|
|
585
593
|
* @param overrides - Specific data overrides that will be applied to the variant data struct.
|
|
586
594
|
*/
|
|
587
595
|
createVariantProducts(parentProduct: Product, propertyGroups: PropertyGroup[], overrides?: Partial<Product>): Promise<Product[]>;
|
|
596
|
+
/**
|
|
597
|
+
* Creates a product review
|
|
598
|
+
*
|
|
599
|
+
* @param productId - The uuid of the product to which the review should be assigned.
|
|
600
|
+
* @param overrides - Specific data overrides that will be applied to the review data struct.
|
|
601
|
+
*/
|
|
602
|
+
createProductReview(productId: string, overrides?: Partial<ProductReview>): Promise<ProductReview>;
|
|
588
603
|
/**
|
|
589
604
|
* Creates a basic manufacturer without images or other special configuration.
|
|
590
605
|
*
|
|
@@ -1130,6 +1145,7 @@ declare class TestDataService {
|
|
|
1130
1145
|
getSalesChannelDomainStruct(salesChannelId: string, currencyId: string, languageId: string, snippetSetId: string, overrides?: Partial<SalesChannelDomain>): Partial<SalesChannelDomain>;
|
|
1131
1146
|
getTaxStruct(overrides: Partial<Tax$1>): Partial<Tax$1>;
|
|
1132
1147
|
getBasicCrossSellingStruct(productId: string, overrides?: Partial<ProductCrossSelling>): never;
|
|
1148
|
+
getBasicProductReviewStruct(productId: string, overrides?: Partial<ProductReview>): Partial<ProductReview>;
|
|
1133
1149
|
}
|
|
1134
1150
|
|
|
1135
1151
|
interface TestDataFixtureTypes {
|
|
@@ -1226,9 +1242,21 @@ declare class Home implements PageObject {
|
|
|
1226
1242
|
readonly closeGuestSessionButton: Locator;
|
|
1227
1243
|
readonly productImages: Locator;
|
|
1228
1244
|
readonly productListItems: Locator;
|
|
1245
|
+
/**
|
|
1246
|
+
* @deprecated Use 'Header/languagesDropdown' instead
|
|
1247
|
+
*/
|
|
1229
1248
|
readonly languagesDropdown: Locator;
|
|
1249
|
+
/**
|
|
1250
|
+
* @deprecated Use 'Header/languagesMenuOptions' instead
|
|
1251
|
+
*/
|
|
1230
1252
|
readonly languagesMenuOptions: Locator;
|
|
1253
|
+
/**
|
|
1254
|
+
* @deprecated Use 'Header/currenciesDropdown' instead
|
|
1255
|
+
*/
|
|
1231
1256
|
readonly currenciesDropdown: Locator;
|
|
1257
|
+
/**
|
|
1258
|
+
* @deprecated Use 'Header/currenciesMenuOptions' instead
|
|
1259
|
+
*/
|
|
1232
1260
|
readonly currenciesMenuOptions: Locator;
|
|
1233
1261
|
readonly consentOnlyTechnicallyRequiredButton: Locator;
|
|
1234
1262
|
readonly consentConfigureButton: Locator;
|
|
@@ -1247,11 +1275,36 @@ declare class Home implements PageObject {
|
|
|
1247
1275
|
readonly consentDialogSaveButton: Locator;
|
|
1248
1276
|
readonly consentCookieBannerContainer: Locator;
|
|
1249
1277
|
readonly offcanvasBackdrop: Locator;
|
|
1278
|
+
/**
|
|
1279
|
+
* @deprecated Use 'Header/mainNavigationLink' instead
|
|
1280
|
+
*/
|
|
1250
1281
|
readonly mainNavigationLink: Locator;
|
|
1282
|
+
/**
|
|
1283
|
+
* @deprecated Use 'Footer/contactFormLink' instead
|
|
1284
|
+
*/
|
|
1251
1285
|
readonly contactFormLink: Locator;
|
|
1286
|
+
/**
|
|
1287
|
+
* @deprecated Use 'Header/wishlistIcon' instead
|
|
1288
|
+
*/
|
|
1252
1289
|
readonly wishlistIcon: Locator;
|
|
1290
|
+
/**
|
|
1291
|
+
* @deprecated Use 'Header/wishlistBasket' instead
|
|
1292
|
+
*/
|
|
1253
1293
|
readonly wishlistBasket: Locator;
|
|
1294
|
+
readonly filterMultiSelect: Locator;
|
|
1295
|
+
readonly manufacturerFilter: Locator;
|
|
1296
|
+
readonly propertyFilters: Locator;
|
|
1297
|
+
readonly priceFilterButton: Locator;
|
|
1298
|
+
readonly resetAllButton: Locator;
|
|
1299
|
+
readonly freeShippingFilter: Locator;
|
|
1300
|
+
readonly productList: Locator;
|
|
1301
|
+
readonly productItemNames: Locator;
|
|
1302
|
+
readonly productRatingButton: Locator;
|
|
1303
|
+
readonly productRatingList: Locator;
|
|
1254
1304
|
constructor(page: Page);
|
|
1305
|
+
getRatingItemLocatorByRating(rating: number): Promise<Locator>;
|
|
1306
|
+
getFilterItemByFilterName(filterName: string): Promise<Locator>;
|
|
1307
|
+
getFilterButtonByFilterName(filterName: string): Promise<Locator>;
|
|
1255
1308
|
getMenuItemByCategoryName(categoryName: string): Promise<Record<string, Locator>>;
|
|
1256
1309
|
/**
|
|
1257
1310
|
* @deprecated - use getListingItemByProductName instead
|
|
@@ -1279,6 +1332,9 @@ declare class ProductDetail$1 implements PageObject {
|
|
|
1279
1332
|
readonly offCanvas: Locator;
|
|
1280
1333
|
readonly wishlistAddedButton: Locator;
|
|
1281
1334
|
readonly wishlistNotAddedButton: Locator;
|
|
1335
|
+
readonly productDetailConfigurator: Locator;
|
|
1336
|
+
readonly productDetailConfiguratorGroupTitle: Locator;
|
|
1337
|
+
readonly productDetailConfiguratorOptionInputs: Locator;
|
|
1282
1338
|
constructor(page: Page);
|
|
1283
1339
|
url(productData: Product): string;
|
|
1284
1340
|
}
|
|
@@ -1505,6 +1561,7 @@ declare class AccountAddresses implements PageObject {
|
|
|
1505
1561
|
readonly deliveryNotPossibleAlert: Locator | undefined;
|
|
1506
1562
|
readonly availableAddresses: Locator | undefined;
|
|
1507
1563
|
readonly addressDropdownButton: Locator | undefined;
|
|
1564
|
+
readonly addressDropdownButtons: Locator | undefined;
|
|
1508
1565
|
readonly availableAddressesUseAsBillingAddress: Locator | undefined;
|
|
1509
1566
|
readonly availableAddressesUseAsShippingAddress: Locator | undefined;
|
|
1510
1567
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
@@ -1655,6 +1712,30 @@ declare class Wishlist extends Home implements PageObject {
|
|
|
1655
1712
|
url(): string;
|
|
1656
1713
|
}
|
|
1657
1714
|
|
|
1715
|
+
declare class Footer implements PageObject {
|
|
1716
|
+
readonly page: Page;
|
|
1717
|
+
readonly footerHeadline: Locator;
|
|
1718
|
+
readonly footerContent: Locator;
|
|
1719
|
+
readonly footerHotline: Locator;
|
|
1720
|
+
readonly footerContactForm: Locator;
|
|
1721
|
+
readonly footerContactFormLink: Locator;
|
|
1722
|
+
constructor(page: Page);
|
|
1723
|
+
url(): string;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
declare class Header implements PageObject {
|
|
1727
|
+
readonly page: Page;
|
|
1728
|
+
readonly mainNavigationLink: Locator;
|
|
1729
|
+
readonly languagesDropdown: Locator;
|
|
1730
|
+
readonly languagesMenuOptions: Locator;
|
|
1731
|
+
readonly currenciesDropdown: Locator;
|
|
1732
|
+
readonly currenciesMenuOptions: Locator;
|
|
1733
|
+
readonly wishlistIcon: Locator;
|
|
1734
|
+
readonly wishlistBasket: Locator;
|
|
1735
|
+
constructor(page: Page);
|
|
1736
|
+
url(): string;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1658
1739
|
interface StorefrontPageTypes {
|
|
1659
1740
|
StorefrontHome: Home;
|
|
1660
1741
|
StorefrontProductDetail: ProductDetail$1;
|
|
@@ -1679,6 +1760,8 @@ interface StorefrontPageTypes {
|
|
|
1679
1760
|
StorefrontPageNotFound: PageNotFound;
|
|
1680
1761
|
StorefrontContactForm: ContactForm;
|
|
1681
1762
|
StorefrontWishlist: Wishlist;
|
|
1763
|
+
StorefrontFooter: Footer;
|
|
1764
|
+
StorefrontHeader: Header;
|
|
1682
1765
|
}
|
|
1683
1766
|
declare const StorefrontPageObjects: {
|
|
1684
1767
|
Home: typeof Home;
|
|
@@ -1704,6 +1787,8 @@ declare const StorefrontPageObjects: {
|
|
|
1704
1787
|
PageNotFound: typeof PageNotFound;
|
|
1705
1788
|
ContactForm: typeof ContactForm;
|
|
1706
1789
|
Wishlist: typeof Wishlist;
|
|
1790
|
+
Footer: typeof Footer;
|
|
1791
|
+
Header: typeof Header;
|
|
1707
1792
|
};
|
|
1708
1793
|
|
|
1709
1794
|
declare class ProductDetail implements PageObject {
|
|
@@ -2646,4 +2731,4 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2646
2731
|
AddProductToWishlist: Task;
|
|
2647
2732
|
}, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions & FixtureTypes>;
|
|
2648
2733
|
|
|
2649
|
-
export { type AccountData, type Address, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country$1 as Country, type CreatedRecord, type Currency$2 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Flow, type FlowTemplate, type Language$2 as Language, type Manufacturer, type Media, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type PaymentMethod$1 as PaymentMethod, type Price, type Product, type ProductCrossSelling, type ProductPrice, type Promotion, type PromotionDiscount, type PropertyGroup, type PropertyGroupOption, type RegistrationData, type Rule, type RuleAssignmentEntity, RuleType, type SalesChannel, type SalesChannelAnalytics, type SalesChannelDomain, type SalesChannelRecord, type Salutation, type ShippingMethod$1 as ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax$1 as Tax, type TaxRules, TestDataService, type VariantListingConfig, compareFlowTemplateWithFlow, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlow, getFlowId, getFlowTemplate, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getShippingMethodId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|
|
2734
|
+
export { type AccountData, type Address, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country$1 as Country, type CreatedRecord, type Currency$2 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Flow, type FlowTemplate, type Language$2 as Language, type Manufacturer, type Media, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type PaymentMethod$1 as PaymentMethod, type Price, type Product, type ProductCrossSelling, type ProductPrice, type ProductReview, type Promotion, type PromotionDiscount, type PropertyGroup, type PropertyGroupOption, type RegistrationData, type Rule, type RuleAssignmentEntity, RuleType, type SalesChannel, type SalesChannelAnalytics, type SalesChannelDomain, type SalesChannelRecord, type Salutation, type ShippingMethod$1 as ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax$1 as Tax, type TaxRules, TestDataService, type VariantListingConfig, compareFlowTemplateWithFlow, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlow, getFlowId, getFlowTemplate, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getShippingMethodId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|
package/dist/index.d.ts
CHANGED
|
@@ -244,6 +244,14 @@ type Product = Omit<components['schemas']['Product'], 'price' | 'prices' | 'opti
|
|
|
244
244
|
visibilities?: Record<string, unknown>[];
|
|
245
245
|
variantListingConfig?: VariantListingConfig;
|
|
246
246
|
};
|
|
247
|
+
type ProductReview = components['schemas']['ProductReview'] & {
|
|
248
|
+
id: string;
|
|
249
|
+
productId: string;
|
|
250
|
+
salesChannelId: string;
|
|
251
|
+
title: string;
|
|
252
|
+
content: string;
|
|
253
|
+
points: number;
|
|
254
|
+
};
|
|
247
255
|
type OrderDelivery = Omit<components['schemas']['OrderDelivery'], 'shippingOrderAddress' | 'shippingCosts'> & {
|
|
248
256
|
id: string;
|
|
249
257
|
shippingOrderAddress: Partial<components['schemas']['OrderAddress']>;
|
|
@@ -585,6 +593,13 @@ declare class TestDataService {
|
|
|
585
593
|
* @param overrides - Specific data overrides that will be applied to the variant data struct.
|
|
586
594
|
*/
|
|
587
595
|
createVariantProducts(parentProduct: Product, propertyGroups: PropertyGroup[], overrides?: Partial<Product>): Promise<Product[]>;
|
|
596
|
+
/**
|
|
597
|
+
* Creates a product review
|
|
598
|
+
*
|
|
599
|
+
* @param productId - The uuid of the product to which the review should be assigned.
|
|
600
|
+
* @param overrides - Specific data overrides that will be applied to the review data struct.
|
|
601
|
+
*/
|
|
602
|
+
createProductReview(productId: string, overrides?: Partial<ProductReview>): Promise<ProductReview>;
|
|
588
603
|
/**
|
|
589
604
|
* Creates a basic manufacturer without images or other special configuration.
|
|
590
605
|
*
|
|
@@ -1130,6 +1145,7 @@ declare class TestDataService {
|
|
|
1130
1145
|
getSalesChannelDomainStruct(salesChannelId: string, currencyId: string, languageId: string, snippetSetId: string, overrides?: Partial<SalesChannelDomain>): Partial<SalesChannelDomain>;
|
|
1131
1146
|
getTaxStruct(overrides: Partial<Tax$1>): Partial<Tax$1>;
|
|
1132
1147
|
getBasicCrossSellingStruct(productId: string, overrides?: Partial<ProductCrossSelling>): never;
|
|
1148
|
+
getBasicProductReviewStruct(productId: string, overrides?: Partial<ProductReview>): Partial<ProductReview>;
|
|
1133
1149
|
}
|
|
1134
1150
|
|
|
1135
1151
|
interface TestDataFixtureTypes {
|
|
@@ -1226,9 +1242,21 @@ declare class Home implements PageObject {
|
|
|
1226
1242
|
readonly closeGuestSessionButton: Locator;
|
|
1227
1243
|
readonly productImages: Locator;
|
|
1228
1244
|
readonly productListItems: Locator;
|
|
1245
|
+
/**
|
|
1246
|
+
* @deprecated Use 'Header/languagesDropdown' instead
|
|
1247
|
+
*/
|
|
1229
1248
|
readonly languagesDropdown: Locator;
|
|
1249
|
+
/**
|
|
1250
|
+
* @deprecated Use 'Header/languagesMenuOptions' instead
|
|
1251
|
+
*/
|
|
1230
1252
|
readonly languagesMenuOptions: Locator;
|
|
1253
|
+
/**
|
|
1254
|
+
* @deprecated Use 'Header/currenciesDropdown' instead
|
|
1255
|
+
*/
|
|
1231
1256
|
readonly currenciesDropdown: Locator;
|
|
1257
|
+
/**
|
|
1258
|
+
* @deprecated Use 'Header/currenciesMenuOptions' instead
|
|
1259
|
+
*/
|
|
1232
1260
|
readonly currenciesMenuOptions: Locator;
|
|
1233
1261
|
readonly consentOnlyTechnicallyRequiredButton: Locator;
|
|
1234
1262
|
readonly consentConfigureButton: Locator;
|
|
@@ -1247,11 +1275,36 @@ declare class Home implements PageObject {
|
|
|
1247
1275
|
readonly consentDialogSaveButton: Locator;
|
|
1248
1276
|
readonly consentCookieBannerContainer: Locator;
|
|
1249
1277
|
readonly offcanvasBackdrop: Locator;
|
|
1278
|
+
/**
|
|
1279
|
+
* @deprecated Use 'Header/mainNavigationLink' instead
|
|
1280
|
+
*/
|
|
1250
1281
|
readonly mainNavigationLink: Locator;
|
|
1282
|
+
/**
|
|
1283
|
+
* @deprecated Use 'Footer/contactFormLink' instead
|
|
1284
|
+
*/
|
|
1251
1285
|
readonly contactFormLink: Locator;
|
|
1286
|
+
/**
|
|
1287
|
+
* @deprecated Use 'Header/wishlistIcon' instead
|
|
1288
|
+
*/
|
|
1252
1289
|
readonly wishlistIcon: Locator;
|
|
1290
|
+
/**
|
|
1291
|
+
* @deprecated Use 'Header/wishlistBasket' instead
|
|
1292
|
+
*/
|
|
1253
1293
|
readonly wishlistBasket: Locator;
|
|
1294
|
+
readonly filterMultiSelect: Locator;
|
|
1295
|
+
readonly manufacturerFilter: Locator;
|
|
1296
|
+
readonly propertyFilters: Locator;
|
|
1297
|
+
readonly priceFilterButton: Locator;
|
|
1298
|
+
readonly resetAllButton: Locator;
|
|
1299
|
+
readonly freeShippingFilter: Locator;
|
|
1300
|
+
readonly productList: Locator;
|
|
1301
|
+
readonly productItemNames: Locator;
|
|
1302
|
+
readonly productRatingButton: Locator;
|
|
1303
|
+
readonly productRatingList: Locator;
|
|
1254
1304
|
constructor(page: Page);
|
|
1305
|
+
getRatingItemLocatorByRating(rating: number): Promise<Locator>;
|
|
1306
|
+
getFilterItemByFilterName(filterName: string): Promise<Locator>;
|
|
1307
|
+
getFilterButtonByFilterName(filterName: string): Promise<Locator>;
|
|
1255
1308
|
getMenuItemByCategoryName(categoryName: string): Promise<Record<string, Locator>>;
|
|
1256
1309
|
/**
|
|
1257
1310
|
* @deprecated - use getListingItemByProductName instead
|
|
@@ -1279,6 +1332,9 @@ declare class ProductDetail$1 implements PageObject {
|
|
|
1279
1332
|
readonly offCanvas: Locator;
|
|
1280
1333
|
readonly wishlistAddedButton: Locator;
|
|
1281
1334
|
readonly wishlistNotAddedButton: Locator;
|
|
1335
|
+
readonly productDetailConfigurator: Locator;
|
|
1336
|
+
readonly productDetailConfiguratorGroupTitle: Locator;
|
|
1337
|
+
readonly productDetailConfiguratorOptionInputs: Locator;
|
|
1282
1338
|
constructor(page: Page);
|
|
1283
1339
|
url(productData: Product): string;
|
|
1284
1340
|
}
|
|
@@ -1505,6 +1561,7 @@ declare class AccountAddresses implements PageObject {
|
|
|
1505
1561
|
readonly deliveryNotPossibleAlert: Locator | undefined;
|
|
1506
1562
|
readonly availableAddresses: Locator | undefined;
|
|
1507
1563
|
readonly addressDropdownButton: Locator | undefined;
|
|
1564
|
+
readonly addressDropdownButtons: Locator | undefined;
|
|
1508
1565
|
readonly availableAddressesUseAsBillingAddress: Locator | undefined;
|
|
1509
1566
|
readonly availableAddressesUseAsShippingAddress: Locator | undefined;
|
|
1510
1567
|
constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
|
|
@@ -1655,6 +1712,30 @@ declare class Wishlist extends Home implements PageObject {
|
|
|
1655
1712
|
url(): string;
|
|
1656
1713
|
}
|
|
1657
1714
|
|
|
1715
|
+
declare class Footer implements PageObject {
|
|
1716
|
+
readonly page: Page;
|
|
1717
|
+
readonly footerHeadline: Locator;
|
|
1718
|
+
readonly footerContent: Locator;
|
|
1719
|
+
readonly footerHotline: Locator;
|
|
1720
|
+
readonly footerContactForm: Locator;
|
|
1721
|
+
readonly footerContactFormLink: Locator;
|
|
1722
|
+
constructor(page: Page);
|
|
1723
|
+
url(): string;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
declare class Header implements PageObject {
|
|
1727
|
+
readonly page: Page;
|
|
1728
|
+
readonly mainNavigationLink: Locator;
|
|
1729
|
+
readonly languagesDropdown: Locator;
|
|
1730
|
+
readonly languagesMenuOptions: Locator;
|
|
1731
|
+
readonly currenciesDropdown: Locator;
|
|
1732
|
+
readonly currenciesMenuOptions: Locator;
|
|
1733
|
+
readonly wishlistIcon: Locator;
|
|
1734
|
+
readonly wishlistBasket: Locator;
|
|
1735
|
+
constructor(page: Page);
|
|
1736
|
+
url(): string;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1658
1739
|
interface StorefrontPageTypes {
|
|
1659
1740
|
StorefrontHome: Home;
|
|
1660
1741
|
StorefrontProductDetail: ProductDetail$1;
|
|
@@ -1679,6 +1760,8 @@ interface StorefrontPageTypes {
|
|
|
1679
1760
|
StorefrontPageNotFound: PageNotFound;
|
|
1680
1761
|
StorefrontContactForm: ContactForm;
|
|
1681
1762
|
StorefrontWishlist: Wishlist;
|
|
1763
|
+
StorefrontFooter: Footer;
|
|
1764
|
+
StorefrontHeader: Header;
|
|
1682
1765
|
}
|
|
1683
1766
|
declare const StorefrontPageObjects: {
|
|
1684
1767
|
Home: typeof Home;
|
|
@@ -1704,6 +1787,8 @@ declare const StorefrontPageObjects: {
|
|
|
1704
1787
|
PageNotFound: typeof PageNotFound;
|
|
1705
1788
|
ContactForm: typeof ContactForm;
|
|
1706
1789
|
Wishlist: typeof Wishlist;
|
|
1790
|
+
Footer: typeof Footer;
|
|
1791
|
+
Header: typeof Header;
|
|
1707
1792
|
};
|
|
1708
1793
|
|
|
1709
1794
|
declare class ProductDetail implements PageObject {
|
|
@@ -2646,4 +2731,4 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2646
2731
|
AddProductToWishlist: Task;
|
|
2647
2732
|
}, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions & FixtureTypes>;
|
|
2648
2733
|
|
|
2649
|
-
export { type AccountData, type Address, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country$1 as Country, type CreatedRecord, type Currency$2 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Flow, type FlowTemplate, type Language$2 as Language, type Manufacturer, type Media, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type PaymentMethod$1 as PaymentMethod, type Price, type Product, type ProductCrossSelling, type ProductPrice, type Promotion, type PromotionDiscount, type PropertyGroup, type PropertyGroupOption, type RegistrationData, type Rule, type RuleAssignmentEntity, RuleType, type SalesChannel, type SalesChannelAnalytics, type SalesChannelDomain, type SalesChannelRecord, type Salutation, type ShippingMethod$1 as ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax$1 as Tax, type TaxRules, TestDataService, type VariantListingConfig, compareFlowTemplateWithFlow, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlow, getFlowId, getFlowTemplate, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getShippingMethodId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|
|
2734
|
+
export { type AccountData, type Address, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country$1 as Country, type CreatedRecord, type Currency$2 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Flow, type FlowTemplate, type Language$2 as Language, type Manufacturer, type Media, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type PaymentMethod$1 as PaymentMethod, type Price, type Product, type ProductCrossSelling, type ProductPrice, type ProductReview, type Promotion, type PromotionDiscount, type PropertyGroup, type PropertyGroupOption, type RegistrationData, type Rule, type RuleAssignmentEntity, RuleType, type SalesChannel, type SalesChannelAnalytics, type SalesChannelDomain, type SalesChannelRecord, type Salutation, type ShippingMethod$1 as ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax$1 as Tax, type TaxRules, TestDataService, type VariantListingConfig, compareFlowTemplateWithFlow, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlow, getFlowId, getFlowTemplate, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getShippingMethodId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|