@shopware-ag/acceptance-test-suite 11.5.0 → 11.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 +70 -3
- package/dist/index.d.ts +70 -3
- package/dist/index.mjs +464 -318
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -211,6 +211,9 @@ interface Price {
|
|
|
211
211
|
linked: boolean;
|
|
212
212
|
currencyId: string;
|
|
213
213
|
}
|
|
214
|
+
interface VariantListingConfig {
|
|
215
|
+
displayParent: boolean;
|
|
216
|
+
}
|
|
214
217
|
interface ProductPrice {
|
|
215
218
|
productId?: string;
|
|
216
219
|
ruleId: string;
|
|
@@ -218,7 +221,7 @@ interface ProductPrice {
|
|
|
218
221
|
quantityStart: number;
|
|
219
222
|
quantityEnd: number | null;
|
|
220
223
|
}
|
|
221
|
-
type Product = Omit<components['schemas']['Product'], 'price' | 'prices' | 'options' | 'tags' | 'visibilities'> & {
|
|
224
|
+
type Product = Omit<components['schemas']['Product'], 'price' | 'prices' | 'options' | 'tags' | 'visibilities' | 'variantListingConfig'> & {
|
|
222
225
|
id: string;
|
|
223
226
|
price: Price[];
|
|
224
227
|
prices?: ProductPrice[];
|
|
@@ -228,6 +231,7 @@ type Product = Omit<components['schemas']['Product'], 'price' | 'prices' | 'opti
|
|
|
228
231
|
options?: Record<string, string>[];
|
|
229
232
|
tags?: Record<string, string>[];
|
|
230
233
|
visibilities?: Record<string, unknown>[];
|
|
234
|
+
variantListingConfig?: VariantListingConfig;
|
|
231
235
|
};
|
|
232
236
|
type OrderDelivery = Omit<components['schemas']['OrderDelivery'], 'shippingOrderAddress' | 'shippingCosts'> & {
|
|
233
237
|
id: string;
|
|
@@ -267,6 +271,9 @@ type Country = components['schemas']['Country'] & {
|
|
|
267
271
|
type SystemConfig = components['schemas']['SystemConfig'] & {
|
|
268
272
|
id: string;
|
|
269
273
|
};
|
|
274
|
+
type ProductCrossSelling = components['schemas']['ProductCrossSelling'] & {
|
|
275
|
+
id: string;
|
|
276
|
+
};
|
|
270
277
|
interface CalculatedTaxes {
|
|
271
278
|
tax: number;
|
|
272
279
|
taxRate: number;
|
|
@@ -494,6 +501,13 @@ declare class TestDataService {
|
|
|
494
501
|
* @param currencyId - The uuid of the currency to use for the product pricing.
|
|
495
502
|
*/
|
|
496
503
|
createBasicProduct(overrides?: Partial<Product>, taxId?: string, currencyId?: string): Promise<Product>;
|
|
504
|
+
/**
|
|
505
|
+
* Creates a basic product cross-selling entity without products.
|
|
506
|
+
*
|
|
507
|
+
* @param productId - The uuid of the product to which the pproduct cross-selling should be assigned.
|
|
508
|
+
* @param overrides - Specific data overrides that will be applied to the property group data struct.
|
|
509
|
+
*/
|
|
510
|
+
createProductCrossSelling(productId: string, overrides?: Partial<ProductCrossSelling>): Promise<ProductCrossSelling>;
|
|
497
511
|
/**
|
|
498
512
|
* Creates a basic product with one randomly generated image.
|
|
499
513
|
* The product will be added to the default sales channel category if configured.
|
|
@@ -1060,6 +1074,7 @@ declare class TestDataService {
|
|
|
1060
1074
|
getBasicCustomFieldStruct(overrides?: Partial<CustomField>): Partial<CustomField>;
|
|
1061
1075
|
getSalesChannelDomainStruct(salesChannelId: string, currencyId: string, languageId: string, snippetSetId: string, overrides?: Partial<SalesChannelDomain>): Partial<SalesChannelDomain>;
|
|
1062
1076
|
getTaxStruct(overrides: Partial<Tax>): Partial<Tax>;
|
|
1077
|
+
getBasicCrossSellingStruct(productId: string, overrides?: Partial<ProductCrossSelling>): never;
|
|
1063
1078
|
}
|
|
1064
1079
|
|
|
1065
1080
|
interface TestDataFixtureTypes {
|
|
@@ -1139,6 +1154,8 @@ declare class Home implements PageObject {
|
|
|
1139
1154
|
readonly consentDialogSaveButton: Locator;
|
|
1140
1155
|
readonly consentCookieBannerContainer: Locator;
|
|
1141
1156
|
readonly offcanvasBackdrop: Locator;
|
|
1157
|
+
readonly mainNavigationLink: Locator;
|
|
1158
|
+
readonly contactFormLink: Locator;
|
|
1142
1159
|
constructor(page: Page);
|
|
1143
1160
|
getMenuItemByCategoryName(categoryName: string): Promise<Record<string, Locator>>;
|
|
1144
1161
|
getListingItemByProductId(productId: string): Promise<Record<string, Locator>>;
|
|
@@ -1152,6 +1169,9 @@ declare class ProductDetail$1 implements PageObject {
|
|
|
1152
1169
|
readonly productSingleImage: Locator;
|
|
1153
1170
|
readonly productSinglePrice: Locator;
|
|
1154
1171
|
readonly productPriceRangesRow: Locator;
|
|
1172
|
+
readonly productListingPriceBadge: Locator;
|
|
1173
|
+
readonly productListingPrice: Locator;
|
|
1174
|
+
readonly productListingPricePercentage: Locator;
|
|
1155
1175
|
readonly offCanvasCartTitle: Locator;
|
|
1156
1176
|
readonly offCanvasCart: Locator;
|
|
1157
1177
|
readonly offCanvasCartGoToCheckoutButton: Locator;
|
|
@@ -1294,6 +1314,11 @@ declare class AccountLogin implements PageObject {
|
|
|
1294
1314
|
readonly countryInput: Locator;
|
|
1295
1315
|
readonly postalCodeInput: Locator;
|
|
1296
1316
|
readonly registerButton: Locator;
|
|
1317
|
+
readonly greCaptchaV2Container: Locator;
|
|
1318
|
+
readonly greCaptchaV2Input: Locator;
|
|
1319
|
+
readonly greCaptchaV3Input: Locator;
|
|
1320
|
+
readonly greCaptchaProtectionInformation: Locator;
|
|
1321
|
+
readonly greCaptchaBadge: Locator;
|
|
1297
1322
|
constructor(page: Page);
|
|
1298
1323
|
url(): string;
|
|
1299
1324
|
}
|
|
@@ -1352,7 +1377,6 @@ declare class AccountOrder implements PageObject {
|
|
|
1352
1377
|
readonly dialogBackButton: Locator;
|
|
1353
1378
|
constructor(page: Page);
|
|
1354
1379
|
getOrderByOrderNumber(orderNumber: string): Promise<Record<string, Locator>>;
|
|
1355
|
-
getViewSubscriptionLink: (orderNumber: string) => Locator;
|
|
1356
1380
|
url(): string;
|
|
1357
1381
|
}
|
|
1358
1382
|
|
|
@@ -1451,6 +1475,45 @@ declare class AccountAddressCreate implements PageObject {
|
|
|
1451
1475
|
url(): string;
|
|
1452
1476
|
}
|
|
1453
1477
|
|
|
1478
|
+
declare class PageNotFound implements PageObject {
|
|
1479
|
+
readonly page: Page;
|
|
1480
|
+
readonly pageNotFoundImage: Locator;
|
|
1481
|
+
readonly headline: Locator;
|
|
1482
|
+
readonly pageNotFoundMessage: Locator;
|
|
1483
|
+
readonly backToShopButton: Locator;
|
|
1484
|
+
constructor(page: Page);
|
|
1485
|
+
url(): string;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
declare class ContactForm extends Home implements PageObject {
|
|
1489
|
+
readonly page: Page;
|
|
1490
|
+
readonly contactModal: Locator;
|
|
1491
|
+
readonly contactSuccessModal: Locator;
|
|
1492
|
+
readonly salutationSelect: Locator;
|
|
1493
|
+
readonly firstNameInput: Locator;
|
|
1494
|
+
readonly lastNameInput: Locator;
|
|
1495
|
+
readonly emailInput: Locator;
|
|
1496
|
+
readonly phoneInput: Locator;
|
|
1497
|
+
readonly subjectInput: Locator;
|
|
1498
|
+
readonly commentInput: Locator;
|
|
1499
|
+
readonly privacyPolicyCheckbox: Locator;
|
|
1500
|
+
readonly submitButton: Locator;
|
|
1501
|
+
readonly contactSuccessMessage: Locator;
|
|
1502
|
+
readonly cardTitle: Locator;
|
|
1503
|
+
/**
|
|
1504
|
+
* Captcha locators
|
|
1505
|
+
*/
|
|
1506
|
+
readonly basicCaptcha: Locator;
|
|
1507
|
+
readonly basicCaptchaImage: Locator;
|
|
1508
|
+
readonly basicCaptchaRefreshButton: Locator;
|
|
1509
|
+
readonly basicCaptchaInput: Locator;
|
|
1510
|
+
readonly greCaptchaV2Container: Locator;
|
|
1511
|
+
readonly greCaptchaV2Input: Locator;
|
|
1512
|
+
readonly greCaptchaProtectionInformation: Locator;
|
|
1513
|
+
constructor(page: Page);
|
|
1514
|
+
url(): string;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1454
1517
|
interface StorefrontPageTypes {
|
|
1455
1518
|
StorefrontHome: Home;
|
|
1456
1519
|
StorefrontProductDetail: ProductDetail$1;
|
|
@@ -1472,6 +1535,8 @@ interface StorefrontPageTypes {
|
|
|
1472
1535
|
StorefrontSearchSuggest: SearchSuggest;
|
|
1473
1536
|
StorefrontCustomRegister: CustomRegister;
|
|
1474
1537
|
StorefrontCheckoutOrderEdit: CheckoutOrderEdit;
|
|
1538
|
+
StorefrontPageNotFound: PageNotFound;
|
|
1539
|
+
StorefrontContactForm: ContactForm;
|
|
1475
1540
|
}
|
|
1476
1541
|
declare const StorefrontPageObjects: {
|
|
1477
1542
|
Home: typeof Home;
|
|
@@ -1494,6 +1559,8 @@ declare const StorefrontPageObjects: {
|
|
|
1494
1559
|
SearchSuggest: typeof SearchSuggest;
|
|
1495
1560
|
CustomRegister: typeof CustomRegister;
|
|
1496
1561
|
CheckoutOrderEdit: typeof CheckoutOrderEdit;
|
|
1562
|
+
PageNotFound: typeof PageNotFound;
|
|
1563
|
+
ContactForm: typeof ContactForm;
|
|
1497
1564
|
};
|
|
1498
1565
|
|
|
1499
1566
|
declare class ProductDetail implements PageObject {
|
|
@@ -2364,4 +2431,4 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2364
2431
|
ValidateAccessibility: (pageName: string, assertViolations?: number | boolean | undefined, createReport?: boolean | undefined, ruleTags?: string[] | undefined, outputDir?: string | undefined) => () => Promise<axe_core.Result[]>;
|
|
2365
2432
|
}, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions & FixtureTypes>;
|
|
2366
2433
|
|
|
2367
|
-
export { type AccountData, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country, type CreatedRecord, type Currency$1 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Language$1 as Language, type Manufacturer, type Media, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type PaymentMethod, type Price, type Product, 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, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax, type TaxRules, TestDataService, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlowId, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|
|
2434
|
+
export { type AccountData, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country, type CreatedRecord, type Currency$1 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Language$1 as Language, type Manufacturer, type Media, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type 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, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax, type TaxRules, TestDataService, type VariantListingConfig, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlowId, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|
package/dist/index.d.ts
CHANGED
|
@@ -211,6 +211,9 @@ interface Price {
|
|
|
211
211
|
linked: boolean;
|
|
212
212
|
currencyId: string;
|
|
213
213
|
}
|
|
214
|
+
interface VariantListingConfig {
|
|
215
|
+
displayParent: boolean;
|
|
216
|
+
}
|
|
214
217
|
interface ProductPrice {
|
|
215
218
|
productId?: string;
|
|
216
219
|
ruleId: string;
|
|
@@ -218,7 +221,7 @@ interface ProductPrice {
|
|
|
218
221
|
quantityStart: number;
|
|
219
222
|
quantityEnd: number | null;
|
|
220
223
|
}
|
|
221
|
-
type Product = Omit<components['schemas']['Product'], 'price' | 'prices' | 'options' | 'tags' | 'visibilities'> & {
|
|
224
|
+
type Product = Omit<components['schemas']['Product'], 'price' | 'prices' | 'options' | 'tags' | 'visibilities' | 'variantListingConfig'> & {
|
|
222
225
|
id: string;
|
|
223
226
|
price: Price[];
|
|
224
227
|
prices?: ProductPrice[];
|
|
@@ -228,6 +231,7 @@ type Product = Omit<components['schemas']['Product'], 'price' | 'prices' | 'opti
|
|
|
228
231
|
options?: Record<string, string>[];
|
|
229
232
|
tags?: Record<string, string>[];
|
|
230
233
|
visibilities?: Record<string, unknown>[];
|
|
234
|
+
variantListingConfig?: VariantListingConfig;
|
|
231
235
|
};
|
|
232
236
|
type OrderDelivery = Omit<components['schemas']['OrderDelivery'], 'shippingOrderAddress' | 'shippingCosts'> & {
|
|
233
237
|
id: string;
|
|
@@ -267,6 +271,9 @@ type Country = components['schemas']['Country'] & {
|
|
|
267
271
|
type SystemConfig = components['schemas']['SystemConfig'] & {
|
|
268
272
|
id: string;
|
|
269
273
|
};
|
|
274
|
+
type ProductCrossSelling = components['schemas']['ProductCrossSelling'] & {
|
|
275
|
+
id: string;
|
|
276
|
+
};
|
|
270
277
|
interface CalculatedTaxes {
|
|
271
278
|
tax: number;
|
|
272
279
|
taxRate: number;
|
|
@@ -494,6 +501,13 @@ declare class TestDataService {
|
|
|
494
501
|
* @param currencyId - The uuid of the currency to use for the product pricing.
|
|
495
502
|
*/
|
|
496
503
|
createBasicProduct(overrides?: Partial<Product>, taxId?: string, currencyId?: string): Promise<Product>;
|
|
504
|
+
/**
|
|
505
|
+
* Creates a basic product cross-selling entity without products.
|
|
506
|
+
*
|
|
507
|
+
* @param productId - The uuid of the product to which the pproduct cross-selling should be assigned.
|
|
508
|
+
* @param overrides - Specific data overrides that will be applied to the property group data struct.
|
|
509
|
+
*/
|
|
510
|
+
createProductCrossSelling(productId: string, overrides?: Partial<ProductCrossSelling>): Promise<ProductCrossSelling>;
|
|
497
511
|
/**
|
|
498
512
|
* Creates a basic product with one randomly generated image.
|
|
499
513
|
* The product will be added to the default sales channel category if configured.
|
|
@@ -1060,6 +1074,7 @@ declare class TestDataService {
|
|
|
1060
1074
|
getBasicCustomFieldStruct(overrides?: Partial<CustomField>): Partial<CustomField>;
|
|
1061
1075
|
getSalesChannelDomainStruct(salesChannelId: string, currencyId: string, languageId: string, snippetSetId: string, overrides?: Partial<SalesChannelDomain>): Partial<SalesChannelDomain>;
|
|
1062
1076
|
getTaxStruct(overrides: Partial<Tax>): Partial<Tax>;
|
|
1077
|
+
getBasicCrossSellingStruct(productId: string, overrides?: Partial<ProductCrossSelling>): never;
|
|
1063
1078
|
}
|
|
1064
1079
|
|
|
1065
1080
|
interface TestDataFixtureTypes {
|
|
@@ -1139,6 +1154,8 @@ declare class Home implements PageObject {
|
|
|
1139
1154
|
readonly consentDialogSaveButton: Locator;
|
|
1140
1155
|
readonly consentCookieBannerContainer: Locator;
|
|
1141
1156
|
readonly offcanvasBackdrop: Locator;
|
|
1157
|
+
readonly mainNavigationLink: Locator;
|
|
1158
|
+
readonly contactFormLink: Locator;
|
|
1142
1159
|
constructor(page: Page);
|
|
1143
1160
|
getMenuItemByCategoryName(categoryName: string): Promise<Record<string, Locator>>;
|
|
1144
1161
|
getListingItemByProductId(productId: string): Promise<Record<string, Locator>>;
|
|
@@ -1152,6 +1169,9 @@ declare class ProductDetail$1 implements PageObject {
|
|
|
1152
1169
|
readonly productSingleImage: Locator;
|
|
1153
1170
|
readonly productSinglePrice: Locator;
|
|
1154
1171
|
readonly productPriceRangesRow: Locator;
|
|
1172
|
+
readonly productListingPriceBadge: Locator;
|
|
1173
|
+
readonly productListingPrice: Locator;
|
|
1174
|
+
readonly productListingPricePercentage: Locator;
|
|
1155
1175
|
readonly offCanvasCartTitle: Locator;
|
|
1156
1176
|
readonly offCanvasCart: Locator;
|
|
1157
1177
|
readonly offCanvasCartGoToCheckoutButton: Locator;
|
|
@@ -1294,6 +1314,11 @@ declare class AccountLogin implements PageObject {
|
|
|
1294
1314
|
readonly countryInput: Locator;
|
|
1295
1315
|
readonly postalCodeInput: Locator;
|
|
1296
1316
|
readonly registerButton: Locator;
|
|
1317
|
+
readonly greCaptchaV2Container: Locator;
|
|
1318
|
+
readonly greCaptchaV2Input: Locator;
|
|
1319
|
+
readonly greCaptchaV3Input: Locator;
|
|
1320
|
+
readonly greCaptchaProtectionInformation: Locator;
|
|
1321
|
+
readonly greCaptchaBadge: Locator;
|
|
1297
1322
|
constructor(page: Page);
|
|
1298
1323
|
url(): string;
|
|
1299
1324
|
}
|
|
@@ -1352,7 +1377,6 @@ declare class AccountOrder implements PageObject {
|
|
|
1352
1377
|
readonly dialogBackButton: Locator;
|
|
1353
1378
|
constructor(page: Page);
|
|
1354
1379
|
getOrderByOrderNumber(orderNumber: string): Promise<Record<string, Locator>>;
|
|
1355
|
-
getViewSubscriptionLink: (orderNumber: string) => Locator;
|
|
1356
1380
|
url(): string;
|
|
1357
1381
|
}
|
|
1358
1382
|
|
|
@@ -1451,6 +1475,45 @@ declare class AccountAddressCreate implements PageObject {
|
|
|
1451
1475
|
url(): string;
|
|
1452
1476
|
}
|
|
1453
1477
|
|
|
1478
|
+
declare class PageNotFound implements PageObject {
|
|
1479
|
+
readonly page: Page;
|
|
1480
|
+
readonly pageNotFoundImage: Locator;
|
|
1481
|
+
readonly headline: Locator;
|
|
1482
|
+
readonly pageNotFoundMessage: Locator;
|
|
1483
|
+
readonly backToShopButton: Locator;
|
|
1484
|
+
constructor(page: Page);
|
|
1485
|
+
url(): string;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
declare class ContactForm extends Home implements PageObject {
|
|
1489
|
+
readonly page: Page;
|
|
1490
|
+
readonly contactModal: Locator;
|
|
1491
|
+
readonly contactSuccessModal: Locator;
|
|
1492
|
+
readonly salutationSelect: Locator;
|
|
1493
|
+
readonly firstNameInput: Locator;
|
|
1494
|
+
readonly lastNameInput: Locator;
|
|
1495
|
+
readonly emailInput: Locator;
|
|
1496
|
+
readonly phoneInput: Locator;
|
|
1497
|
+
readonly subjectInput: Locator;
|
|
1498
|
+
readonly commentInput: Locator;
|
|
1499
|
+
readonly privacyPolicyCheckbox: Locator;
|
|
1500
|
+
readonly submitButton: Locator;
|
|
1501
|
+
readonly contactSuccessMessage: Locator;
|
|
1502
|
+
readonly cardTitle: Locator;
|
|
1503
|
+
/**
|
|
1504
|
+
* Captcha locators
|
|
1505
|
+
*/
|
|
1506
|
+
readonly basicCaptcha: Locator;
|
|
1507
|
+
readonly basicCaptchaImage: Locator;
|
|
1508
|
+
readonly basicCaptchaRefreshButton: Locator;
|
|
1509
|
+
readonly basicCaptchaInput: Locator;
|
|
1510
|
+
readonly greCaptchaV2Container: Locator;
|
|
1511
|
+
readonly greCaptchaV2Input: Locator;
|
|
1512
|
+
readonly greCaptchaProtectionInformation: Locator;
|
|
1513
|
+
constructor(page: Page);
|
|
1514
|
+
url(): string;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1454
1517
|
interface StorefrontPageTypes {
|
|
1455
1518
|
StorefrontHome: Home;
|
|
1456
1519
|
StorefrontProductDetail: ProductDetail$1;
|
|
@@ -1472,6 +1535,8 @@ interface StorefrontPageTypes {
|
|
|
1472
1535
|
StorefrontSearchSuggest: SearchSuggest;
|
|
1473
1536
|
StorefrontCustomRegister: CustomRegister;
|
|
1474
1537
|
StorefrontCheckoutOrderEdit: CheckoutOrderEdit;
|
|
1538
|
+
StorefrontPageNotFound: PageNotFound;
|
|
1539
|
+
StorefrontContactForm: ContactForm;
|
|
1475
1540
|
}
|
|
1476
1541
|
declare const StorefrontPageObjects: {
|
|
1477
1542
|
Home: typeof Home;
|
|
@@ -1494,6 +1559,8 @@ declare const StorefrontPageObjects: {
|
|
|
1494
1559
|
SearchSuggest: typeof SearchSuggest;
|
|
1495
1560
|
CustomRegister: typeof CustomRegister;
|
|
1496
1561
|
CheckoutOrderEdit: typeof CheckoutOrderEdit;
|
|
1562
|
+
PageNotFound: typeof PageNotFound;
|
|
1563
|
+
ContactForm: typeof ContactForm;
|
|
1497
1564
|
};
|
|
1498
1565
|
|
|
1499
1566
|
declare class ProductDetail implements PageObject {
|
|
@@ -2364,4 +2431,4 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2364
2431
|
ValidateAccessibility: (pageName: string, assertViolations?: number | boolean | undefined, createReport?: boolean | undefined, ruleTags?: string[] | undefined, outputDir?: string | undefined) => () => Promise<axe_core.Result[]>;
|
|
2365
2432
|
}, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions & FixtureTypes>;
|
|
2366
2433
|
|
|
2367
|
-
export { type AccountData, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country, type CreatedRecord, type Currency$1 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Language$1 as Language, type Manufacturer, type Media, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type PaymentMethod, type Price, type Product, 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, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax, type TaxRules, TestDataService, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlowId, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|
|
2434
|
+
export { type AccountData, AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CategoryCustomizableLinkData, type CategoryData, type CmsPage, type Country, type CreatedRecord, type Currency$1 as Currency, type CustomField, type CustomFieldData, type CustomFieldSet, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, type Language$1 as Language, type Manufacturer, type Media, type Order, type OrderDelivery, type OrderLineItem, type OrderStatus, type PageObject, type 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, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type TagData, type Task, type Tax, type TaxRules, TestDataService, type VariantListingConfig, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlowId, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|