2021-02-11 13:58:05 +00:00
|
|
|
export const ADD_CHANNEL_FORM_SELECTORS = {
|
|
|
|
channelName: "[name='name']",
|
|
|
|
slug: "[name='slug']",
|
|
|
|
currency: "[data-test-id='channel-currency-select-input']",
|
2022-02-11 11:28:55 +00:00
|
|
|
currencyOptions: "[data-test-id='single-autocomplete-select-option']",
|
2023-01-03 08:18:56 +00:00
|
|
|
saveButton: "[data-test-id='button-bar-confirm']",
|
2021-02-11 13:58:05 +00:00
|
|
|
backToChannelsList: "[data-test-id='app-header-back-button']",
|
2022-02-11 11:28:55 +00:00
|
|
|
currencyValidationMessage: "[data-test-id='currency-text-input-helper-text']",
|
|
|
|
slugValidationMessage: "[data-test-id='slug-text-input-helper-text']",
|
2021-02-11 13:58:05 +00:00
|
|
|
currencyAutocompleteDropdown:
|
2022-02-11 11:28:55 +00:00
|
|
|
"[data-test-id='single-autocomplete-select-option'][data-test-type='custom']",
|
2022-07-11 09:43:08 +00:00
|
|
|
addShippingZoneButton: '[data-test-id="shipping-add-button"]',
|
|
|
|
addWarehouseButton: '[data-test-id="warehouse-add-button"]',
|
2022-02-11 11:28:55 +00:00
|
|
|
shippingAutocompleteSelect: "[data-test-id='shipping-auto-complete-select']",
|
2022-07-11 09:43:08 +00:00
|
|
|
warehouseAutocompleteSelect:
|
|
|
|
"[data-test-id='warehouse-auto-complete-select']",
|
|
|
|
countryAutocompleteInput: '[data-test-id="country-select-input"]',
|
2023-07-12 12:04:50 +00:00
|
|
|
generalInformationSection: '[data-test-id="general-information"]',
|
2021-02-11 13:58:05 +00:00
|
|
|
};
|