Last active
April 3, 2020 20:33
-
-
Save loranmutafov/bf1f968754d5bc4c29cedffce27d494d to your computer and use it in GitHub Desktop.
Test Stripe credit card filling 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('fillOutCreditCardForm', details => { | |
cy.get('.__PrivateStripeElement > iframe') | |
.iframe() | |
.then(iframes => { | |
cy.wrap(iframes[0]) | |
.find('.InputElement') | |
.first() | |
.type(details.number); | |
cy.wrap(iframes[1]) | |
.find('.InputElement') | |
.first() | |
.fill( | |
details.expiration || | |
moment() | |
.add(5, 'years') | |
.format('MM/YY') | |
); | |
cy.wrap(iframes[2]) | |
.find('.InputElement') | |
.first() | |
.fill(details.code); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment