Skip to content

Instantly share code, notes, and snippets.

@tcrammond
Last active November 21, 2016 12:20
Show Gist options
  • Save tcrammond/ec38357e7627a94f9a5852fa045a6b92 to your computer and use it in GitHub Desktop.
Save tcrammond/ec38357e7627a94f9a5852fa045a6b92 to your computer and use it in GitHub Desktop.
Bookmarklet to enter test card on Adyen test payment
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