2021-02-18 09:00:08 +00:00
|
|
|
export const COLLECTION_SELECTORS = {
|
|
|
|
createCollectionButton: "[data-test-id = 'create-collection']",
|
|
|
|
nameInput: "[name='name']",
|
2023-01-03 08:18:56 +00:00
|
|
|
saveButton: "[data-test-id='button-bar-confirm']",
|
2021-12-22 11:27:28 +00:00
|
|
|
addProductButton: "[data-test-id='add-product']",
|
2022-06-06 10:27:18 +00:00
|
|
|
descriptionInput: '[data-test-id="rich-text-editor-description"]',
|
2022-09-23 12:15:59 +00:00
|
|
|
placeholder: "[data-placeholder]",
|
2021-02-18 09:00:08 +00:00
|
|
|
};
|
2022-04-27 11:14:05 +00:00
|
|
|
|
|
|
|
export const collectionRow = collectionId =>
|
|
|
|
`[data-test-id*="${collectionId}"]`;
|
|
|
|
export const productRow = productId => `[data-test-id*="${productId}"]`;
|