Commit 797aa2da 797aa2da9117c66891415619d31fd1e03ae70e59 by Nicolas Perriault

Merge pull request #788 from Polytonic/patch-1

Fix Typo in Casper Module Docs
2 parents 5c80139c 0442b8fd
...@@ -2169,7 +2169,7 @@ is changed to a different value before processing the next step. Uses `waitFor() ...@@ -2169,7 +2169,7 @@ is changed to a different value before processing the next step. Uses `waitFor()
2169 casper.start('http://foo.bar/'); 2169 casper.start('http://foo.bar/');
2170 2170
2171 casper.waitForSelectorTextChange('.selector', function() { 2171 casper.waitForSelectorTextChange('.selector', function() {
2172 this.echo('The text on .selector has been changed.); 2172 this.echo('The text on .selector has been changed.');
2173 }); 2173 });
2174 2174
2175 casper.run(); 2175 casper.run();
......