saleor-dashboard/cypress/elements/warehouses/warehouse-details.js
Karolina Rakoczy f7b452cb12
tests for warehouses in checkout (#1379)
* tests for warehouses in checkout

* fix puchase product with type
2021-10-05 13:46:58 +02:00

9 lines
367 B
JavaScript

export const WAREHOUSES_DETAILS = {
nameInput: '[name="name"]',
privateRadioButton: '[name="isPrivate"][value=true]',
publicRadioButton: '[name="isPrivate"][value=false]',
clickAndCollectAllWarehousesRadioButton:
'[name="clickAndCollectOption"][value="ALL"]',
clickAndCollectLocalStockRadioButton:
'[name="clickAndCollectOption"][value="LOCAL"]'
};