diff --git a/tests/e2e/core-tests/specs/shopper/front-end-cart-coupons.test.js b/tests/e2e/core-tests/specs/shopper/front-end-cart-coupons.test.js index c78e0b13e3b..a40da317397 100644 --- a/tests/e2e/core-tests/specs/shopper/front-end-cart-coupons.test.js +++ b/tests/e2e/core-tests/specs/shopper/front-end-cart-coupons.test.js @@ -27,8 +27,6 @@ const { * @returns {Promise} */ const applyCouponToCart = async ( couponCode ) => { - await expect(page).toClick('a', {text: 'Click here to enter your code'}); - await uiUnblocked(); await clearAndFillInput('#coupon_code', couponCode); await expect(page).toClick('button', {text: 'Apply coupon'}); await uiUnblocked(); @@ -49,7 +47,7 @@ const runCartApplyCouponsTest = () => { let couponFixedCart; let couponPercentage; let couponFixedProduct; - + beforeAll(async () => { await merchant.login(); await createSimpleProduct();