13 lines
692 B
JavaScript
13 lines
692 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"]',
|
|
newAddressSelectButton: "[data-test-id='customerAddressnewAddress']",
|
|
};
|