
* fix failing tests * fix tests for gift cards * fix tests for gift cards * upload video only when fail * fix preorder time * fixed translation page * fix navigation, stripe and adyen * fix graphQl npm * update stories
15 lines
834 B
JavaScript
15 lines
834 B
JavaScript
export const ADD_CHANNEL_FORM_SELECTORS = {
|
|
channelName: "[name='name']",
|
|
slug: "[name='slug']",
|
|
currency: "[data-test-id='channel-currency-select-input']",
|
|
currencyOptions: "[data-test-id='singleautocomplete-select-option']",
|
|
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:
|
|
"[data-test-id='singleautocomplete-select-option'][data-test-type='custom']",
|
|
addShippingZoneButton: '[data-test-id="add-shipping-zone-button"]',
|
|
shippingAutocompleteSelect: "[data-test-id='shippingAutoCompleteSelect']",
|
|
countryAutocompleteInput: '[data-test-id="country-select-input"]'
|
|
};
|