Skip to content

Instantly share code, notes, and snippets.

@loranmutafov
Last active April 3, 2020 20:39
Show Gist options
  • Save loranmutafov/649bde26cb21d9e0769ce3f99b011eb3 to your computer and use it in GitHub Desktop.
Save loranmutafov/649bde26cb21d9e0769ce3f99b011eb3 to your computer and use it in GitHub Desktop.
Test Stripe 3D secure auth with Cypress, depends on https://gist.github.com/loranmutafov/0aef48884f3ec05edeb95aa1e0d06a17
Cypress.Commands.add('waitForStripe3dIframe', callback => {
cy.get('iframe[src^="https://js.stripe.com/v3/three-ds-2-challenge"]')
.should('be.visible');
cy.get('iframe[src^="https://js.stripe.com/v3/three-ds-2-challenge"]')
.iframe()
.then(iframes => {
cy.wrap(iframes[0])
.find('iframe')
.should('be.visible');
cy.wrap(iframes[0])
.find('iframe')
.iframe()
.then(callback);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment