
Co-authored-by: Krzysztof Żuraw <9116238+krzysztofzuraw@users.noreply.github.com> Co-authored-by: Michał Droń <dron.official@yahoo.com> Co-authored-by: Paweł Chyła <chyla1988@gmail.com>
12 lines
587 B
JavaScript
12 lines
587 B
JavaScript
export const ORDERS_SELECTORS = {
|
|
orders: "[data-test-id='menu-item-label'][data-test-id='orders']",
|
|
createOrder: "[data-test-id='create-order-button']",
|
|
orderRow: "[data-test-id='order-table-row']",
|
|
salesChannel: "[data-test-id='order-sales-channel']",
|
|
cancelFulfillment: "[data-test-id='cancel-fulfillment-button']",
|
|
cancelFulfillmentSelectField:
|
|
"[data-test-id='cancel-fulfillment-select-field']",
|
|
orderFulfillmentFrame: "[data-test-id='order-fulfillment']",
|
|
refundButton: '[data-test-id="refund-button"]',
|
|
fulfillMenuButton: '[data-test-id="fulfill-menu"]',
|
|
};
|