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 1 You must be signed in to fork a gist
  • Save flomotlik/5113098 to your computer and use it in GitHub Desktop.
Save flomotlik/5113098 to your computer and use it in GitHub Desktop.
#Run with casperjs test translate.coffee
casper.start 'http://translate.google.com/', ->
@.sendKeys('#source', 'Guten Tag');
@.then ->
@.click '#gt-submit'
@.waitForText('Good day')
@.then ->
@.test.assertSelectorHasText '#result_box', 'Good day'
@.then ->
@.capture 'output.png'
casper.run ->
@.test.done(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment