2023-03-09 08:18:07 +00:00
|
|
|
export const SHIPPING_ZONES_LIST_SELECTORS = {
|
2021-07-12 08:50:50 +00:00
|
|
|
addShippingZone: "[data-test-id='add-shipping-zone']",
|
|
|
|
unitSelect: "[id='mui-component-select-unit']",
|
2023-03-09 08:18:07 +00:00
|
|
|
saveUnit: '[data-test-id="save-unit"]',
|
2021-04-02 11:01:38 +00:00
|
|
|
};
|
2022-02-11 15:08:45 +00:00
|
|
|
|
|
|
|
export const SHIPPING_ZONE_CHECKBOX = shippingId =>
|
|
|
|
`[data-test-id="${shippingId}-checkbox"]`;
|
|
|
|
|
|
|
|
export const SHIPPING_ZONE_NAME = shippingId =>
|
|
|
|
`[data-test-id="${shippingId}-name"]`;
|