Last active
November 21, 2016 12:20
-
-
Save tcrammond/ec38357e7627a94f9a5852fa045a6b92 to your computer and use it in GitHub Desktop.
Bookmarklet to enter test card on Adyen test payment
This file contains hidden or 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
javascript:(function () { document.getElementById('card.cardNumber').value = '4111111111111111'; document.getElementById('card.cardHolderName').value = 'Nyancat'; document.getElementById('card.expiryMonth').value = '08'; document.getElementById('card.expiryYear').value = '2018'; document.getElementById('card.cvcCode').value = '737' ; }()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment