Skip to content

Instantly share code, notes, and snippets.

@sawamur
Created November 13, 2012 15:08
Show Gist options
  • Save sawamur/4066212 to your computer and use it in GitHub Desktop.
Save sawamur/4066212 to your computer and use it in GitHub Desktop.
casper2
casper.start "http://twitter.com",->
@fill "form[action='https://twitter.com/sessions']"
,{"session[username_or_email]": "foobar","session[password]": "xxxxx"}
,true
casper.then ->
console.log @getCurrentUrl()
@click "#tweet-box-mini-home-profile"
casper.then ->
@fill "form.tweet-fom"
,{ status: "test" }
@capture "clicked.png",size
casper.then ->
console.log @getCurrentUrl()
casper.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment