Skip to content

Instantly share code, notes, and snippets.

@bidulock
Created May 3, 2012 16:48
Show Gist options
  • Save bidulock/2587163 to your computer and use it in GitHub Desktop.
Save bidulock/2587163 to your computer and use it in GitHub Desktop.
sofi dev userscripts
// ==UserScript==
// @include http://localhost:3000/users/login
// ==/UserScript==
setTimeout(function () {
document.getElementsByName("email")[0].value = "dev.null@sofi.local";
document.getElementsByName("password")[0].value = "abc..123";
document.getElementsByName("submit")[0].click();
}, 2000);
// ==UserScript==
// @include http://localhost:3000/users/sign_up
// ==/UserScript==
setTimeout(function () {
document.getElementsByName("email")[0].value = "dev.null@sofi.local";
document.getElementsByName("password")[0].value = "abc..123";
document.getElementsByName("password_confirmation")[0].value = "abc..123";
document.getElementsByName("terms_of_service")[0].click();
document.getElementsByName("submit")[0].click();
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment