diff --git a/tests/playwright/fixtures/countriesEUR/DE.spec.mjs b/tests/playwright/fixtures/countriesEUR/DE.spec.mjs index 7dbc3a8dc..d77a52c98 100644 --- a/tests/playwright/fixtures/countriesEUR/DE.spec.mjs +++ b/tests/playwright/fixtures/countriesEUR/DE.spec.mjs @@ -31,7 +31,7 @@ for (const environment of environments) { await new PaymentMethodsPage(page).waitForKlarnaLoad(); }); - test('Klarna Fail @quick', async ({ page }) => { + test.skip('Klarna Fail @quick', async ({ page }) => { redirectShopper = new RedirectShopper(page); await redirectShopper.doKlarnaPayment(); await checkoutPage.completeCheckout(); diff --git a/tests/playwright/fixtures/countriesEUR/NL.spec.mjs b/tests/playwright/fixtures/countriesEUR/NL.spec.mjs index 4c0c3043c..1cd686d0c 100644 --- a/tests/playwright/fixtures/countriesEUR/NL.spec.mjs +++ b/tests/playwright/fixtures/countriesEUR/NL.spec.mjs @@ -43,7 +43,7 @@ for (const environment of environments) { await checkoutPage.expectNonRedirectSuccess(); }); - test('iDeal Fail @quick', async ({ page }) => { + test.skip('iDeal Fail @quick', async ({ page }) => { redirectShopper = new RedirectShopper(page); await redirectShopper.doIdealPayment(); await checkoutPage.completeCheckout(); diff --git a/tests/playwright/pages/CheckoutPageSFRA6.mjs b/tests/playwright/pages/CheckoutPageSFRA6.mjs index cf6a47f89..35d8a9df1 100644 --- a/tests/playwright/pages/CheckoutPageSFRA6.mjs +++ b/tests/playwright/pages/CheckoutPageSFRA6.mjs @@ -194,7 +194,7 @@ export default class CheckoutPageSFRA { placeOrder = async () => { await this.page.waitForLoadState('load'); - await this.placeOrderButton.click({force: true}); + await this.placeOrderButton.click(); }; completeCheckoutLoggedInUser = async () => {