We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9556a36 commit 49a6148Copy full SHA for 49a6148
cypress-tests/cypress/support/redirectionHandler.js
@@ -404,6 +404,19 @@ function bankRedirectRedirection(
404
}
405
break;
406
407
+ case "multisafepay":
408
+ if (["sofort", "eps", "mbway"].includes(paymentMethodType)) {
409
+ // Multisafe pay has CSRF blocking cannot actually test redirection flow via cypress
410
+ // cy.get(".btn-msp-success").click();
411
+
412
+ verifyUrl = false;
413
+ } else {
414
+ throw new Error(
415
+ `Unsupported multisafe payment method type: ${paymentMethodType}`
416
+ );
417
+ }
418
+ break;
419
420
default:
421
throw new Error(
422
`Unsupported connector in handleFlow: ${connectorId}`
0 commit comments