@shopware-ag/acceptance-test-suite 8.2.1 → 8.3.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 +102 -1
- package/dist/index.d.ts +102 -1
- package/dist/index.mjs +1028 -674
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -347,6 +347,15 @@ interface RegistrationData {
|
|
|
347
347
|
department: string;
|
|
348
348
|
vatRegNo: string;
|
|
349
349
|
}
|
|
350
|
+
type Language$1 = components['schemas']['Language'] & {
|
|
351
|
+
id: string;
|
|
352
|
+
};
|
|
353
|
+
type CustomFieldSet = components['schemas']['CustomFieldSet'] & {
|
|
354
|
+
id: string;
|
|
355
|
+
};
|
|
356
|
+
type CustomField = components['schemas']['CustomField'] & {
|
|
357
|
+
id: string;
|
|
358
|
+
};
|
|
350
359
|
|
|
351
360
|
interface SalesChannelRecord {
|
|
352
361
|
salesChannelId: string;
|
|
@@ -611,6 +620,19 @@ declare class TestDataService {
|
|
|
611
620
|
* @param overrides - Specific data overrides that will be applied to the sales channel analytics data struct.
|
|
612
621
|
*/
|
|
613
622
|
createSalesChannelAnalytics(overrides?: Partial<SalesChannelAnalytics>): Promise<SalesChannelAnalytics>;
|
|
623
|
+
/**
|
|
624
|
+
* Creates a custom field
|
|
625
|
+
*
|
|
626
|
+
* @param customFieldSetId - The uuid of the custom field set.
|
|
627
|
+
* @param overrides - Specific data overrides that will be applied to the custom field data struct.
|
|
628
|
+
*/
|
|
629
|
+
createCustomField(customFieldSetId: string, overrides?: Partial<CustomField>): Promise<CustomField>;
|
|
630
|
+
/**
|
|
631
|
+
* Creates a custom field set
|
|
632
|
+
*
|
|
633
|
+
* @param overrides - Specific data overrides that will be applied to the custom field set data struct.
|
|
634
|
+
*/
|
|
635
|
+
createCustomFieldSet(overrides?: Partial<CustomFieldSet>): Promise<CustomFieldSet>;
|
|
614
636
|
/**
|
|
615
637
|
* Assigns a media resource as the download of a digital product.
|
|
616
638
|
*
|
|
@@ -691,6 +713,13 @@ declare class TestDataService {
|
|
|
691
713
|
* @param countryId - The uuid of the country.
|
|
692
714
|
*/
|
|
693
715
|
assignSalesChannelCountry(salesChannelId: string, countryId: string): Promise<any>;
|
|
716
|
+
/**
|
|
717
|
+
* Assigns a language to a sales channel.
|
|
718
|
+
*
|
|
719
|
+
* @param salesChannelId - The uuid of the sales channel.
|
|
720
|
+
* @param languageId - The uuid of the language.
|
|
721
|
+
*/
|
|
722
|
+
assignSalesChannelLanguage(salesChannelId: string, languageId: string): Promise<any>;
|
|
694
723
|
/**
|
|
695
724
|
* Assigns a media resource to a payment method as a logo.
|
|
696
725
|
*
|
|
@@ -705,6 +734,11 @@ declare class TestDataService {
|
|
|
705
734
|
* @param mediaId - The uuid of the media resource.
|
|
706
735
|
*/
|
|
707
736
|
assignShippingMethodMedia(shippingMethodId: string, mediaId: string): Promise<any>;
|
|
737
|
+
/**
|
|
738
|
+
* Retrieves a language based on its code.
|
|
739
|
+
* @param languageCode
|
|
740
|
+
*/
|
|
741
|
+
getLanguageData(languageCode: string): Promise<Language$1>;
|
|
708
742
|
/**
|
|
709
743
|
* Retrieves a currency based on its ISO code.
|
|
710
744
|
*
|
|
@@ -776,6 +810,22 @@ declare class TestDataService {
|
|
|
776
810
|
* @param propertyGroupId - The uuid of the property group.
|
|
777
811
|
*/
|
|
778
812
|
getPropertyGroupOptions(propertyGroupId: string): Promise<PropertyGroupOption[]>;
|
|
813
|
+
/**
|
|
814
|
+
* Retrieves a customer group by its id.
|
|
815
|
+
*
|
|
816
|
+
* @param customerGroupId - The id of the property group.
|
|
817
|
+
*/
|
|
818
|
+
getCustomerGroupById(customerGroupId: string): Promise<CustomerGroup>;
|
|
819
|
+
/**
|
|
820
|
+
* Retrieves list of customer groups
|
|
821
|
+
*/
|
|
822
|
+
getCustomerGroups(): Promise<CustomerGroup[]>;
|
|
823
|
+
/**
|
|
824
|
+
* Retrieves a language by its id.
|
|
825
|
+
*
|
|
826
|
+
* @param languageId - The id of the property group.
|
|
827
|
+
*/
|
|
828
|
+
getLanguageById(languageId: string): Promise<Language$1>;
|
|
779
829
|
/**
|
|
780
830
|
* Adds an entity reference to the registry of created records.
|
|
781
831
|
* All entities added to the registry will be deleted by the cleanup call.
|
|
@@ -930,6 +980,8 @@ declare class TestDataService {
|
|
|
930
980
|
getBasicCustomerGroupStruct(overrides?: Partial<CustomerGroup>): Partial<CustomerGroup>;
|
|
931
981
|
getSalesChannelAnalyticsStruct(overrides?: Partial<SalesChannelAnalytics>): Partial<SalesChannelAnalytics>;
|
|
932
982
|
clearCaches(): Promise<void>;
|
|
983
|
+
getBasicCustomFieldSetStruct(overrides?: Partial<CustomFieldSet>): Partial<CustomFieldSet>;
|
|
984
|
+
getBasicCustomFieldStruct(overrides?: Partial<CustomField>): Partial<CustomField>;
|
|
933
985
|
}
|
|
934
986
|
|
|
935
987
|
interface TestDataFixtureTypes {
|
|
@@ -1376,8 +1428,16 @@ declare class CustomerListing implements PageObject {
|
|
|
1376
1428
|
readonly page: Page;
|
|
1377
1429
|
readonly headline: Locator;
|
|
1378
1430
|
readonly addCustomerButton: Locator;
|
|
1431
|
+
readonly bulkEditButton: Locator;
|
|
1432
|
+
readonly deleteButton: Locator;
|
|
1433
|
+
readonly bulkEditModal: Locator;
|
|
1434
|
+
readonly startBulkEditButton: Locator;
|
|
1435
|
+
readonly cancelButton: Locator;
|
|
1436
|
+
readonly modalHeaderCheckbox: Locator;
|
|
1379
1437
|
constructor(page: Page);
|
|
1380
1438
|
getCustomerByEmail(customerEmail: string): Promise<Record<string, Locator>>;
|
|
1439
|
+
getCustomerBulkEditModalTitle(customerCount: number): Promise<Locator>;
|
|
1440
|
+
getBulkEditModalLineItemByCustomerEmail(customerEmail: string): Promise<Record<string, Locator>>;
|
|
1381
1441
|
url(): string;
|
|
1382
1442
|
}
|
|
1383
1443
|
|
|
@@ -1392,9 +1452,14 @@ declare class CustomerDetail implements PageObject {
|
|
|
1392
1452
|
readonly customerGroupRequestMessage: Locator;
|
|
1393
1453
|
readonly customerGroupAcceptButton: Locator;
|
|
1394
1454
|
readonly customerGroupDeclineButton: Locator;
|
|
1455
|
+
readonly tagList: Locator;
|
|
1456
|
+
readonly tagItems: Locator;
|
|
1395
1457
|
constructor(page: Page);
|
|
1396
1458
|
getCustomFieldSetCardContentByName(customFieldSetName: string): Promise<Record<string, Locator>>;
|
|
1397
1459
|
getCustomerGroupAlert(customerGroup: string): Promise<Locator>;
|
|
1460
|
+
getCustomerGroup(): Promise<Locator>;
|
|
1461
|
+
getAccountStatus(): Promise<Locator>;
|
|
1462
|
+
getLanguage(): Promise<Locator>;
|
|
1398
1463
|
url(customerId: string): string;
|
|
1399
1464
|
}
|
|
1400
1465
|
|
|
@@ -1851,6 +1916,38 @@ declare class ProductBulkEdit implements PageObject {
|
|
|
1851
1916
|
getDropdownEntry(entry: string): Promise<Locator>;
|
|
1852
1917
|
}
|
|
1853
1918
|
|
|
1919
|
+
declare class CustomerBulkEdit implements PageObject {
|
|
1920
|
+
readonly page: Page;
|
|
1921
|
+
readonly applyChangesButton: Locator;
|
|
1922
|
+
readonly filtersResultPopoverItemList: Locator;
|
|
1923
|
+
readonly changeCustomerGroupCheckbox: Locator;
|
|
1924
|
+
readonly customerGroupInput: Locator;
|
|
1925
|
+
readonly changeAccountStatusCheckbox: Locator;
|
|
1926
|
+
readonly accountStatusInput: Locator;
|
|
1927
|
+
readonly changeLanguageCheckbox: Locator;
|
|
1928
|
+
readonly changeLanguageInput: Locator;
|
|
1929
|
+
readonly replyToCustomerGroupRequest: Locator;
|
|
1930
|
+
readonly replyToCustomerGroupRequestInput: Locator;
|
|
1931
|
+
readonly changeTagsCheckbox: Locator;
|
|
1932
|
+
readonly changeTypeSelect: Locator;
|
|
1933
|
+
readonly enterTagsSelect: Locator;
|
|
1934
|
+
readonly customFieldCheckbox: Locator;
|
|
1935
|
+
readonly customFieldInput: Locator;
|
|
1936
|
+
readonly customFieldArrowRightButton: Locator;
|
|
1937
|
+
/**
|
|
1938
|
+
* Confirmation modal
|
|
1939
|
+
*/
|
|
1940
|
+
readonly confirmModal: Locator;
|
|
1941
|
+
readonly confirmModalApplyChangesButton: Locator;
|
|
1942
|
+
readonly confirmModalSuccessHeader: Locator;
|
|
1943
|
+
readonly confirmModalSuccessCloseButton: Locator;
|
|
1944
|
+
constructor(page: Page);
|
|
1945
|
+
getPageHeadline(customerCount: number): Promise<Locator>;
|
|
1946
|
+
getCustomFieldInputByName(customFieldName: string): Promise<Locator>;
|
|
1947
|
+
getCustomFieldLinkByName(customFieldSetName: string): Promise<Locator>;
|
|
1948
|
+
url(): string;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1854
1951
|
interface AdministrationPageTypes {
|
|
1855
1952
|
AdminProductDetail: ProductDetail;
|
|
1856
1953
|
AdminOrderDetail: OrderDetail;
|
|
@@ -1880,6 +1977,7 @@ interface AdministrationPageTypes {
|
|
|
1880
1977
|
AdminManufacturerDetail: ManufacturerDetail;
|
|
1881
1978
|
AdminProductListing: ProductListing;
|
|
1882
1979
|
AdminProductBulkEdit: ProductBulkEdit;
|
|
1980
|
+
AdminCustomerBulkEdit: CustomerBulkEdit;
|
|
1883
1981
|
}
|
|
1884
1982
|
declare const AdminPageObjects: {
|
|
1885
1983
|
ProductDetail: typeof ProductDetail;
|
|
@@ -1910,6 +2008,7 @@ declare const AdminPageObjects: {
|
|
|
1910
2008
|
ManufacturerListing: typeof ManufacturerListing;
|
|
1911
2009
|
ProductListing: typeof ProductListing;
|
|
1912
2010
|
ProductBulkEdit: typeof ProductBulkEdit;
|
|
2011
|
+
CustomerBulkEdit: typeof CustomerBulkEdit;
|
|
1913
2012
|
};
|
|
1914
2013
|
|
|
1915
2014
|
interface DataFixtureTypes {
|
|
@@ -2004,6 +2103,8 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2004
2103
|
SetSystemConfigValues: Task;
|
|
2005
2104
|
} & {
|
|
2006
2105
|
BulkEditProducts: Task;
|
|
2106
|
+
} & {
|
|
2107
|
+
BulkEditCustomers: Task;
|
|
2007
2108
|
} & {
|
|
2008
2109
|
Login: Task;
|
|
2009
2110
|
} & {
|
|
@@ -2044,4 +2145,4 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2044
2145
|
ValidateAccessibility: (pageName: string, assertViolations?: number | boolean | undefined, createReport?: boolean | undefined, ruleTags?: string[] | undefined, outputDir?: string | undefined) => () => Promise<axe_core.Result[]>;
|
|
2045
2146
|
}, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions & FixtureTypes>;
|
|
2046
2147
|
|
|
2047
|
-
export { AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CmsPage, type Country, type CreatedRecord, type Currency$1 as Currency, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, 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 SalesChannel, type SalesChannelAnalytics, type SalesChannelRecord, type Salutation, type ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type Task, type TaxRules, TestDataService, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlowId, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|
|
2148
|
+
export { AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CmsPage, type Country, type CreatedRecord, type Currency$1 as Currency, type CustomField, 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 SalesChannel, type SalesChannelAnalytics, type SalesChannelRecord, type Salutation, type ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type Task, type TaxRules, TestDataService, 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
|
@@ -347,6 +347,15 @@ interface RegistrationData {
|
|
|
347
347
|
department: string;
|
|
348
348
|
vatRegNo: string;
|
|
349
349
|
}
|
|
350
|
+
type Language$1 = components['schemas']['Language'] & {
|
|
351
|
+
id: string;
|
|
352
|
+
};
|
|
353
|
+
type CustomFieldSet = components['schemas']['CustomFieldSet'] & {
|
|
354
|
+
id: string;
|
|
355
|
+
};
|
|
356
|
+
type CustomField = components['schemas']['CustomField'] & {
|
|
357
|
+
id: string;
|
|
358
|
+
};
|
|
350
359
|
|
|
351
360
|
interface SalesChannelRecord {
|
|
352
361
|
salesChannelId: string;
|
|
@@ -611,6 +620,19 @@ declare class TestDataService {
|
|
|
611
620
|
* @param overrides - Specific data overrides that will be applied to the sales channel analytics data struct.
|
|
612
621
|
*/
|
|
613
622
|
createSalesChannelAnalytics(overrides?: Partial<SalesChannelAnalytics>): Promise<SalesChannelAnalytics>;
|
|
623
|
+
/**
|
|
624
|
+
* Creates a custom field
|
|
625
|
+
*
|
|
626
|
+
* @param customFieldSetId - The uuid of the custom field set.
|
|
627
|
+
* @param overrides - Specific data overrides that will be applied to the custom field data struct.
|
|
628
|
+
*/
|
|
629
|
+
createCustomField(customFieldSetId: string, overrides?: Partial<CustomField>): Promise<CustomField>;
|
|
630
|
+
/**
|
|
631
|
+
* Creates a custom field set
|
|
632
|
+
*
|
|
633
|
+
* @param overrides - Specific data overrides that will be applied to the custom field set data struct.
|
|
634
|
+
*/
|
|
635
|
+
createCustomFieldSet(overrides?: Partial<CustomFieldSet>): Promise<CustomFieldSet>;
|
|
614
636
|
/**
|
|
615
637
|
* Assigns a media resource as the download of a digital product.
|
|
616
638
|
*
|
|
@@ -691,6 +713,13 @@ declare class TestDataService {
|
|
|
691
713
|
* @param countryId - The uuid of the country.
|
|
692
714
|
*/
|
|
693
715
|
assignSalesChannelCountry(salesChannelId: string, countryId: string): Promise<any>;
|
|
716
|
+
/**
|
|
717
|
+
* Assigns a language to a sales channel.
|
|
718
|
+
*
|
|
719
|
+
* @param salesChannelId - The uuid of the sales channel.
|
|
720
|
+
* @param languageId - The uuid of the language.
|
|
721
|
+
*/
|
|
722
|
+
assignSalesChannelLanguage(salesChannelId: string, languageId: string): Promise<any>;
|
|
694
723
|
/**
|
|
695
724
|
* Assigns a media resource to a payment method as a logo.
|
|
696
725
|
*
|
|
@@ -705,6 +734,11 @@ declare class TestDataService {
|
|
|
705
734
|
* @param mediaId - The uuid of the media resource.
|
|
706
735
|
*/
|
|
707
736
|
assignShippingMethodMedia(shippingMethodId: string, mediaId: string): Promise<any>;
|
|
737
|
+
/**
|
|
738
|
+
* Retrieves a language based on its code.
|
|
739
|
+
* @param languageCode
|
|
740
|
+
*/
|
|
741
|
+
getLanguageData(languageCode: string): Promise<Language$1>;
|
|
708
742
|
/**
|
|
709
743
|
* Retrieves a currency based on its ISO code.
|
|
710
744
|
*
|
|
@@ -776,6 +810,22 @@ declare class TestDataService {
|
|
|
776
810
|
* @param propertyGroupId - The uuid of the property group.
|
|
777
811
|
*/
|
|
778
812
|
getPropertyGroupOptions(propertyGroupId: string): Promise<PropertyGroupOption[]>;
|
|
813
|
+
/**
|
|
814
|
+
* Retrieves a customer group by its id.
|
|
815
|
+
*
|
|
816
|
+
* @param customerGroupId - The id of the property group.
|
|
817
|
+
*/
|
|
818
|
+
getCustomerGroupById(customerGroupId: string): Promise<CustomerGroup>;
|
|
819
|
+
/**
|
|
820
|
+
* Retrieves list of customer groups
|
|
821
|
+
*/
|
|
822
|
+
getCustomerGroups(): Promise<CustomerGroup[]>;
|
|
823
|
+
/**
|
|
824
|
+
* Retrieves a language by its id.
|
|
825
|
+
*
|
|
826
|
+
* @param languageId - The id of the property group.
|
|
827
|
+
*/
|
|
828
|
+
getLanguageById(languageId: string): Promise<Language$1>;
|
|
779
829
|
/**
|
|
780
830
|
* Adds an entity reference to the registry of created records.
|
|
781
831
|
* All entities added to the registry will be deleted by the cleanup call.
|
|
@@ -930,6 +980,8 @@ declare class TestDataService {
|
|
|
930
980
|
getBasicCustomerGroupStruct(overrides?: Partial<CustomerGroup>): Partial<CustomerGroup>;
|
|
931
981
|
getSalesChannelAnalyticsStruct(overrides?: Partial<SalesChannelAnalytics>): Partial<SalesChannelAnalytics>;
|
|
932
982
|
clearCaches(): Promise<void>;
|
|
983
|
+
getBasicCustomFieldSetStruct(overrides?: Partial<CustomFieldSet>): Partial<CustomFieldSet>;
|
|
984
|
+
getBasicCustomFieldStruct(overrides?: Partial<CustomField>): Partial<CustomField>;
|
|
933
985
|
}
|
|
934
986
|
|
|
935
987
|
interface TestDataFixtureTypes {
|
|
@@ -1376,8 +1428,16 @@ declare class CustomerListing implements PageObject {
|
|
|
1376
1428
|
readonly page: Page;
|
|
1377
1429
|
readonly headline: Locator;
|
|
1378
1430
|
readonly addCustomerButton: Locator;
|
|
1431
|
+
readonly bulkEditButton: Locator;
|
|
1432
|
+
readonly deleteButton: Locator;
|
|
1433
|
+
readonly bulkEditModal: Locator;
|
|
1434
|
+
readonly startBulkEditButton: Locator;
|
|
1435
|
+
readonly cancelButton: Locator;
|
|
1436
|
+
readonly modalHeaderCheckbox: Locator;
|
|
1379
1437
|
constructor(page: Page);
|
|
1380
1438
|
getCustomerByEmail(customerEmail: string): Promise<Record<string, Locator>>;
|
|
1439
|
+
getCustomerBulkEditModalTitle(customerCount: number): Promise<Locator>;
|
|
1440
|
+
getBulkEditModalLineItemByCustomerEmail(customerEmail: string): Promise<Record<string, Locator>>;
|
|
1381
1441
|
url(): string;
|
|
1382
1442
|
}
|
|
1383
1443
|
|
|
@@ -1392,9 +1452,14 @@ declare class CustomerDetail implements PageObject {
|
|
|
1392
1452
|
readonly customerGroupRequestMessage: Locator;
|
|
1393
1453
|
readonly customerGroupAcceptButton: Locator;
|
|
1394
1454
|
readonly customerGroupDeclineButton: Locator;
|
|
1455
|
+
readonly tagList: Locator;
|
|
1456
|
+
readonly tagItems: Locator;
|
|
1395
1457
|
constructor(page: Page);
|
|
1396
1458
|
getCustomFieldSetCardContentByName(customFieldSetName: string): Promise<Record<string, Locator>>;
|
|
1397
1459
|
getCustomerGroupAlert(customerGroup: string): Promise<Locator>;
|
|
1460
|
+
getCustomerGroup(): Promise<Locator>;
|
|
1461
|
+
getAccountStatus(): Promise<Locator>;
|
|
1462
|
+
getLanguage(): Promise<Locator>;
|
|
1398
1463
|
url(customerId: string): string;
|
|
1399
1464
|
}
|
|
1400
1465
|
|
|
@@ -1851,6 +1916,38 @@ declare class ProductBulkEdit implements PageObject {
|
|
|
1851
1916
|
getDropdownEntry(entry: string): Promise<Locator>;
|
|
1852
1917
|
}
|
|
1853
1918
|
|
|
1919
|
+
declare class CustomerBulkEdit implements PageObject {
|
|
1920
|
+
readonly page: Page;
|
|
1921
|
+
readonly applyChangesButton: Locator;
|
|
1922
|
+
readonly filtersResultPopoverItemList: Locator;
|
|
1923
|
+
readonly changeCustomerGroupCheckbox: Locator;
|
|
1924
|
+
readonly customerGroupInput: Locator;
|
|
1925
|
+
readonly changeAccountStatusCheckbox: Locator;
|
|
1926
|
+
readonly accountStatusInput: Locator;
|
|
1927
|
+
readonly changeLanguageCheckbox: Locator;
|
|
1928
|
+
readonly changeLanguageInput: Locator;
|
|
1929
|
+
readonly replyToCustomerGroupRequest: Locator;
|
|
1930
|
+
readonly replyToCustomerGroupRequestInput: Locator;
|
|
1931
|
+
readonly changeTagsCheckbox: Locator;
|
|
1932
|
+
readonly changeTypeSelect: Locator;
|
|
1933
|
+
readonly enterTagsSelect: Locator;
|
|
1934
|
+
readonly customFieldCheckbox: Locator;
|
|
1935
|
+
readonly customFieldInput: Locator;
|
|
1936
|
+
readonly customFieldArrowRightButton: Locator;
|
|
1937
|
+
/**
|
|
1938
|
+
* Confirmation modal
|
|
1939
|
+
*/
|
|
1940
|
+
readonly confirmModal: Locator;
|
|
1941
|
+
readonly confirmModalApplyChangesButton: Locator;
|
|
1942
|
+
readonly confirmModalSuccessHeader: Locator;
|
|
1943
|
+
readonly confirmModalSuccessCloseButton: Locator;
|
|
1944
|
+
constructor(page: Page);
|
|
1945
|
+
getPageHeadline(customerCount: number): Promise<Locator>;
|
|
1946
|
+
getCustomFieldInputByName(customFieldName: string): Promise<Locator>;
|
|
1947
|
+
getCustomFieldLinkByName(customFieldSetName: string): Promise<Locator>;
|
|
1948
|
+
url(): string;
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1854
1951
|
interface AdministrationPageTypes {
|
|
1855
1952
|
AdminProductDetail: ProductDetail;
|
|
1856
1953
|
AdminOrderDetail: OrderDetail;
|
|
@@ -1880,6 +1977,7 @@ interface AdministrationPageTypes {
|
|
|
1880
1977
|
AdminManufacturerDetail: ManufacturerDetail;
|
|
1881
1978
|
AdminProductListing: ProductListing;
|
|
1882
1979
|
AdminProductBulkEdit: ProductBulkEdit;
|
|
1980
|
+
AdminCustomerBulkEdit: CustomerBulkEdit;
|
|
1883
1981
|
}
|
|
1884
1982
|
declare const AdminPageObjects: {
|
|
1885
1983
|
ProductDetail: typeof ProductDetail;
|
|
@@ -1910,6 +2008,7 @@ declare const AdminPageObjects: {
|
|
|
1910
2008
|
ManufacturerListing: typeof ManufacturerListing;
|
|
1911
2009
|
ProductListing: typeof ProductListing;
|
|
1912
2010
|
ProductBulkEdit: typeof ProductBulkEdit;
|
|
2011
|
+
CustomerBulkEdit: typeof CustomerBulkEdit;
|
|
1913
2012
|
};
|
|
1914
2013
|
|
|
1915
2014
|
interface DataFixtureTypes {
|
|
@@ -2004,6 +2103,8 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2004
2103
|
SetSystemConfigValues: Task;
|
|
2005
2104
|
} & {
|
|
2006
2105
|
BulkEditProducts: Task;
|
|
2106
|
+
} & {
|
|
2107
|
+
BulkEditCustomers: Task;
|
|
2007
2108
|
} & {
|
|
2008
2109
|
Login: Task;
|
|
2009
2110
|
} & {
|
|
@@ -2044,4 +2145,4 @@ declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArg
|
|
|
2044
2145
|
ValidateAccessibility: (pageName: string, assertViolations?: number | boolean | undefined, createReport?: boolean | undefined, ruleTags?: string[] | undefined, outputDir?: string | undefined) => () => Promise<axe_core.Result[]>;
|
|
2045
2146
|
}, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions & FixtureTypes>;
|
|
2046
2147
|
|
|
2047
|
-
export { AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CmsPage, type Country, type CreatedRecord, type Currency$1 as Currency, type Customer, type CustomerAddress, type CustomerGroup, type DataServiceOptions, type DeliveryTime, type FixtureTypes, 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 SalesChannel, type SalesChannelAnalytics, type SalesChannelRecord, type Salutation, type ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type Task, type TaxRules, TestDataService, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlowId, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|
|
2148
|
+
export { AdminPageObjects, type CalculatedTaxes, type Category$1 as Category, type CmsPage, type Country, type CreatedRecord, type Currency$1 as Currency, type CustomField, 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 SalesChannel, type SalesChannelAnalytics, type SalesChannelRecord, type Salutation, type ShippingMethod, type SimpleLineItem, type StateMachine, type StateMachineState, StorefrontPageObjects, type SyncApiOperation, type SystemConfig, type Tag, type Task, type TaxRules, TestDataService, createRandomImage, extractIdFromUrl, getCountryId, getCurrency, getDefaultShippingMethodId, getFlowId, getLanguageData, getMediaId, getOrderTransactionId, getPaymentMethodId, getPromotionWithDiscount, getSalutationId, getSnippetSetId, getStateMachineId, getStateMachineStateId, getTaxId, getThemeId, isSaaSInstance, isThemeCompiled, setOrderStatus, test };
|