Skip to content

Instantly share code, notes, and snippets.

@laclefyoshi
Created March 26, 2011 03:44
Show Gist options
  • Save laclefyoshi/888006 to your computer and use it in GitHub Desktop.
Save laclefyoshi/888006 to your computer and use it in GitHub Desktop.
tell application "Google Chrome"
tell window 1
set newTab to make new tab with properties {URL:"https://bitbucket.org/account/signin/"}
repeat while loading of active tab
delay 0.1
end repeat
tell active tab
execute javascript "document.forms[1]['id_username'].value = 'bitbucket_mail@gmail.com'"
execute javascript "document.forms[1]['id_password'].value = 'bitbucket_password'"
execute javascript "document.forms[1].childNodes[8].childNodes[1].click()"
end tell
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment