2020-08-25 10:03:20 +00:00
|
|
|
export const LEFT_MENU_SELECTORS = {
|
2021-02-11 13:58:05 +00:00
|
|
|
catalog: "[data-test='menu-item-label'][data-test-id='catalogue']",
|
2022-01-31 08:37:49 +00:00
|
|
|
pages: "[data-test='menu-item-label'][data-test-id='pages']",
|
2021-02-11 13:58:05 +00:00
|
|
|
configuration: "[data-test='menu-item-label'][data-test-id='configure']",
|
|
|
|
home: "[data-test='menu-item-label'][data-test-id='home']",
|
2021-03-26 09:33:35 +00:00
|
|
|
orders: "[data-test='menu-item-label'][data-test-id='orders']",
|
|
|
|
discounts: "[data-test='menu-item-label'][data-test-id='discounts']",
|
2022-06-08 06:44:28 +00:00
|
|
|
appSection: "[data-test='menu-item-label'][data-test-id='apps_section']",
|
2021-03-26 09:33:35 +00:00
|
|
|
app: "[data-test='menu-item-label'][data-test-id='apps']",
|
|
|
|
translations: "[data-test='menu-item-label'][data-test-id='translations']",
|
|
|
|
customers: "[data-test='menu-item-label'][data-test-id='customers']"
|
|
|
|
};
|
|
|
|
export const DISCOUNTS_MENU_SELECTORS = {
|
|
|
|
sales: "[data-test='submenu-item-label'][data-test-id='sales']",
|
|
|
|
vouchers: "[data-test='submenu-item-label'][data-test-id='vouchers']"
|
|
|
|
};
|
|
|
|
export const ORDERS = {
|
|
|
|
orders: "[data-test='submenu-item-label'][data-test-id='orders']",
|
2022-02-11 11:28:55 +00:00
|
|
|
draftOrders: "[data-test='submenu-item-label'][data-test-id='order-drafts']"
|
2021-03-26 09:33:35 +00:00
|
|
|
};
|
|
|
|
export const CATALOG = {
|
|
|
|
products: "[data-test='submenu-item-label'][data-test-id='products']",
|
|
|
|
categories: "[data-test='submenu-item-label'][data-test-id='categories']",
|
|
|
|
collections: "[data-test='submenu-item-label'][data-test-id='collections']"
|
2020-08-25 10:03:20 +00:00
|
|
|
};
|
2022-06-08 06:44:28 +00:00
|
|
|
|
|
|
|
export const APP_MENU_SELECTORS = {
|
|
|
|
app: "[data-test='submenu-item-label'][data-test-id='apps']"
|
|
|
|
};
|
|
|
|
|
|
|
|
export const appCommonSelector = "[data-test-id*='apps']";
|