@shopware-ag/acceptance-test-suite 12.13.4 → 12.14.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 +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.mjs +3320 -3294
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -615,6 +615,10 @@ declare class TestDataService {
|
|
|
615
615
|
* Creates a digital product with a text file as its download.
|
|
616
616
|
* The product will be added to the default sales channel category if configured.
|
|
617
617
|
*
|
|
618
|
+
* Digital products default to `maxPurchase: 1`, mirroring the Administration
|
|
619
|
+
* which forces this limit when a product is created as a digital type.
|
|
620
|
+
* Pass `maxPurchase` in the overrides to change it.
|
|
621
|
+
*
|
|
618
622
|
* @param content - The content of the text file for the product download.
|
|
619
623
|
* @param overrides - Specific data overrides that will be applied to the product data struct.
|
|
620
624
|
* @param taxId - The uuid of the tax rule to use for the product pricing.
|
|
@@ -2128,6 +2132,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
2128
2132
|
submitOrder: string;
|
|
2129
2133
|
termsAndConditions: string;
|
|
2130
2134
|
immediateAccessToDigitalProduct: string;
|
|
2135
|
+
autoConfirmTermsText: string;
|
|
2131
2136
|
};
|
|
2132
2137
|
finish: {
|
|
2133
2138
|
thankYouForOrder: string;
|
|
@@ -3214,6 +3219,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
3214
3219
|
submitOrder: string;
|
|
3215
3220
|
termsAndConditions: string;
|
|
3216
3221
|
immediateAccessToDigitalProduct: string;
|
|
3222
|
+
autoConfirmTermsText: string;
|
|
3217
3223
|
};
|
|
3218
3224
|
finish: {
|
|
3219
3225
|
thankYouForOrder: string;
|
|
@@ -4254,6 +4260,7 @@ declare const baseNamespaces: {
|
|
|
4254
4260
|
submitOrder: string;
|
|
4255
4261
|
termsAndConditions: string;
|
|
4256
4262
|
immediateAccessToDigitalProduct: string;
|
|
4263
|
+
autoConfirmTermsText: string;
|
|
4257
4264
|
};
|
|
4258
4265
|
finish: {
|
|
4259
4266
|
thankYouForOrder: string;
|
|
@@ -4840,6 +4847,7 @@ declare class CheckoutConfirm implements PageObject {
|
|
|
4840
4847
|
readonly grandTotalPrice: Locator;
|
|
4841
4848
|
readonly taxPrice: Locator;
|
|
4842
4849
|
readonly submitOrderButton: Locator;
|
|
4850
|
+
readonly termsAutoConfirmedText: Locator;
|
|
4843
4851
|
/**
|
|
4844
4852
|
* Payment and Shipping options
|
|
4845
4853
|
*/
|
|
@@ -5505,7 +5513,7 @@ declare class CustomerGroupListing implements PageObject {
|
|
|
5505
5513
|
readonly page: Page;
|
|
5506
5514
|
constructor(page: Page);
|
|
5507
5515
|
getCustomerGroupByName(customerGroup: string): Promise<Record<string, Locator>>;
|
|
5508
|
-
url(): string;
|
|
5516
|
+
url(searchTerms?: string[], page?: number): string;
|
|
5509
5517
|
}
|
|
5510
5518
|
|
|
5511
5519
|
declare class CustomerGroupCreate implements PageObject {
|
package/dist/index.d.ts
CHANGED
|
@@ -615,6 +615,10 @@ declare class TestDataService {
|
|
|
615
615
|
* Creates a digital product with a text file as its download.
|
|
616
616
|
* The product will be added to the default sales channel category if configured.
|
|
617
617
|
*
|
|
618
|
+
* Digital products default to `maxPurchase: 1`, mirroring the Administration
|
|
619
|
+
* which forces this limit when a product is created as a digital type.
|
|
620
|
+
* Pass `maxPurchase` in the overrides to change it.
|
|
621
|
+
*
|
|
618
622
|
* @param content - The content of the text file for the product download.
|
|
619
623
|
* @param overrides - Specific data overrides that will be applied to the product data struct.
|
|
620
624
|
* @param taxId - The uuid of the tax rule to use for the product pricing.
|
|
@@ -2128,6 +2132,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
2128
2132
|
submitOrder: string;
|
|
2129
2133
|
termsAndConditions: string;
|
|
2130
2134
|
immediateAccessToDigitalProduct: string;
|
|
2135
|
+
autoConfirmTermsText: string;
|
|
2131
2136
|
};
|
|
2132
2137
|
finish: {
|
|
2133
2138
|
thankYouForOrder: string;
|
|
@@ -3214,6 +3219,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
3214
3219
|
submitOrder: string;
|
|
3215
3220
|
termsAndConditions: string;
|
|
3216
3221
|
immediateAccessToDigitalProduct: string;
|
|
3222
|
+
autoConfirmTermsText: string;
|
|
3217
3223
|
};
|
|
3218
3224
|
finish: {
|
|
3219
3225
|
thankYouForOrder: string;
|
|
@@ -4254,6 +4260,7 @@ declare const baseNamespaces: {
|
|
|
4254
4260
|
submitOrder: string;
|
|
4255
4261
|
termsAndConditions: string;
|
|
4256
4262
|
immediateAccessToDigitalProduct: string;
|
|
4263
|
+
autoConfirmTermsText: string;
|
|
4257
4264
|
};
|
|
4258
4265
|
finish: {
|
|
4259
4266
|
thankYouForOrder: string;
|
|
@@ -4840,6 +4847,7 @@ declare class CheckoutConfirm implements PageObject {
|
|
|
4840
4847
|
readonly grandTotalPrice: Locator;
|
|
4841
4848
|
readonly taxPrice: Locator;
|
|
4842
4849
|
readonly submitOrderButton: Locator;
|
|
4850
|
+
readonly termsAutoConfirmedText: Locator;
|
|
4843
4851
|
/**
|
|
4844
4852
|
* Payment and Shipping options
|
|
4845
4853
|
*/
|
|
@@ -5505,7 +5513,7 @@ declare class CustomerGroupListing implements PageObject {
|
|
|
5505
5513
|
readonly page: Page;
|
|
5506
5514
|
constructor(page: Page);
|
|
5507
5515
|
getCustomerGroupByName(customerGroup: string): Promise<Record<string, Locator>>;
|
|
5508
|
-
url(): string;
|
|
5516
|
+
url(searchTerms?: string[], page?: number): string;
|
|
5509
5517
|
}
|
|
5510
5518
|
|
|
5511
5519
|
declare class CustomerGroupCreate implements PageObject {
|