We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pickOneItem: async () => { await waitForSelector(page, cssSel(SEL.BTN_TO_CHECKOUT).mod(MOD.ATTR_DISABLED)); await waitForSelector(page, cssSel(SEL.INFO_TRAY_IS_EMPTY)); await waitForSelector(page, cssSel(SEL.INFO_CART_VALUE_OF('0.00')));
What item is picking?
The above lines could be improved:
pickOneItem: async () => { await checkoutButton(page).expectDisabled() await whatEverThisIS(page).expectVisible(); await orderTotal(page).expectEqualTo('0.00');
The text was updated successfully, but these errors were encountered:
Addressed here: bcdd823#diff-e5d22be546d5bea05118b7320ed855a032637779c61477dccc9719b572bbe0f4
Sorry, something went wrong.
dartandrevinsky
No branches or pull requests
What item is picking?
The above lines could be improved:
The text was updated successfully, but these errors were encountered: