Skip to content

Instantly share code, notes, and snippets.

@zachberry
Created November 17, 2014 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachberry/92f27c8b18794b7ea576 to your computer and use it in GitHub Desktop.
Save zachberry/92f27c8b18794b7ea576 to your computer and use it in GitHub Desktop.
Snippet to quickly fill out a Stripe iframe form in test mode
document.getElementById('shipping-name').value = 'Jimbo Jones';
document.getElementById('shipping-street').value = '123 Fake St.';
document.getElementById('shipping-zip').value = '12345';
document.getElementById('shipping-city').value = 'Anytown';
document.getElementById('submitButton').click();
setTimeout(function() {
document.getElementById('card_number').value = '4242 4242 4242 4242';
document.getElementById('cc-exp').value = '01 / 22';
document.getElementById('cc-csc').value = '222';
document.getElementById('submitButton').click();
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment