Created
March 18, 2015 13:25
-
-
Save artjomb/5e6f12b525789d81856c to your computer and use it in GitHub Desktop.
Revisions
-
artjomb created this gist
Mar 18, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ var casper = require('casper').create(); casper.start("http://stackoverflow.com/contact", function(){ this.capture("test37_1.png"); // "" this.sendKeys("#search > input", "abcd", {keepFocus: true}); this.capture("test37_2.png"); // "abcd" this.page.sendEvent("keypress", casper.page.event.key.Left); this.page.sendEvent("keypress", casper.page.event.key.Left); this.sendKeys("#search > input", "12"); this.capture("test37_3.png"); // "ab12cd" }).run();