Skip to content

Instantly share code, notes, and snippets.

@loranmutafov
Last active April 3, 2020 20:33
Show Gist options
  • Save loranmutafov/bf1f968754d5bc4c29cedffce27d494d to your computer and use it in GitHub Desktop.
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
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