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