Skip to content

Instantly share code, notes, and snippets.

@flomotlik
Last active December 14, 2015 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flomotlik/5113089 to your computer and use it in GitHub Desktop.
Save flomotlik/5113089 to your computer and use it in GitHub Desktop.
#Run with casperjs test casperjstest.coffee
casper.userAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X)')
casper.start 'http://casperjs.org', ->
@.viewport(1024, 768);
@.thenClick('.dropdown-toggle')
@.then ->
@.clickLabel 'Tester API'
@.then ->
@.clickLabel 'Extending'
@.then ->
@.test.assertUrlMatch 'http://casperjs.org/extending.html'
@.capture 'test.png'
casper.run ->
@.test.done(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment