saleor-dashboard/cypress/elements/orders/draft-order-selectors.js
2023-01-03 09:18:56 +01:00

12 lines
620 B
JavaScript

export const DRAFT_ORDER_SELECTORS = {
addProducts: "[data-test-id='add-products-button']",
salesChannel: "[data-test-id='order-sales-channel']",
editCustomerButton: "[data-test-id='edit-customer']",
selectCustomer: "[data-test-id='select-customer']",
selectCustomerOption: "[data-test-type='option']",
addShippingCarrierLink: "[data-test-id='add-shipping-carrier']",
finalizeButton: "[data-test-id='button-bar-confirm']",
editShippingAddress: '[data-test-id="edit-shipping-address"]',
editBillingAddress: '[data-test-id="edit-billing-address"]',
customerEmail: '[data-test-id="customer-email"]',
};