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-01-31 08:37:49 +00:00
|
|
|
currencyOptions: "[data-test-id='singleautocomplete-select-option']",
|
2021-02-11 13:58:05 +00:00
|
|
|
saveButton: "[data-test='button-bar-confirm']",
|
|
|
|
backToChannelsList: "[data-test-id='app-header-back-button']",
|
|
|
|
currencyValidationMessage: "[data-testid='currency-text-input-helper-text']",
|
|
|
|
slugValidationMessage: "[data-testid='slug-text-input-helper-text']",
|
|
|
|
currencyAutocompleteDropdown:
|
2022-01-31 08:37:49 +00:00
|
|
|
"[data-test-id='singleautocomplete-select-option'][data-test-type='custom']",
|
2021-06-30 23:14:25 +00:00
|
|
|
addShippingZoneButton: '[data-test-id="add-shipping-zone-button"]',
|
2021-09-10 08:59:46 +00:00
|
|
|
shippingAutocompleteSelect: "[data-test-id='shippingAutoCompleteSelect']",
|
|
|
|
countryAutocompleteInput: '[data-test-id="country-select-input"]'
|
2021-02-11 13:58:05 +00:00
|
|
|
};
|