Last active
April 3, 2020 20:39
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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