
* test for product create * tests for creating product * create new expect product info utils file
8 lines
287 B
JavaScript
8 lines
287 B
JavaScript
export const BUTTON_SELECTORS = {
|
|
back: '[data-test="back"]',
|
|
submit: '[data-test="submit"]',
|
|
confirm: '[data-test="button-bar-confirm"]',
|
|
goBackButton: "[data-test-id='app-header-back-button']",
|
|
checkbox: "[type='checkbox']",
|
|
selectOption: "[data-test*='select-option']"
|
|
};
|