2021-09-08 11:32:05 +00:00
|
|
|
export const GIFT_CARD_DIALOG = {
|
|
|
|
amountInput: '[name="balanceAmount"]',
|
|
|
|
currencySelectButton: '[id="mui-component-select-balanceCurrency"]',
|
2022-02-11 11:28:55 +00:00
|
|
|
currenciesOptions: '[data-test-id*="select-field-option"]',
|
2021-09-08 11:32:05 +00:00
|
|
|
expirationOptions: {
|
2021-09-29 13:24:47 +00:00
|
|
|
setExpiryDateCheckbox: '[name="expirySelected"]',
|
2021-09-08 11:32:05 +00:00
|
|
|
neverExpireRadioButton: '[value="NEVER_EXPIRE"]',
|
|
|
|
expiryPeriodRadioButton: '[value="EXPIRY_PERIOD"]',
|
|
|
|
expiryDateRadioButton: '[value="EXPIRY_DATE"]',
|
|
|
|
expiryPeriodAmount: '[name="expiryPeriodAmount"]',
|
|
|
|
expiryPeriodTypeButton: '[id*="select-expiryPeriodType"]',
|
2022-02-11 11:28:55 +00:00
|
|
|
expiryPeriodMonthType: '[data-test-id="select-field-option-MONTH"]',
|
2021-09-08 11:32:05 +00:00
|
|
|
expiryDateInput: '[name="expiryDate"]'
|
|
|
|
},
|
|
|
|
noteInput: '[name="note"]',
|
2022-02-11 11:28:55 +00:00
|
|
|
cardCodeText: '[data-test-id="card-code"]',
|
2021-09-08 11:32:05 +00:00
|
|
|
tagInput: '[data-test-id="gift-card-tag-select-field"]'
|
|
|
|
};
|