Commit 35ce6831 35ce6831ea939f076b2ab2bbc78803d3ef6a5ada by Miguel González

Fixed wrong comment

Fixes a wrong comment in an example
1 parent 85bf42f3
...@@ -1725,7 +1725,7 @@ Opposite of `thenBypassIf()`_. ...@@ -1725,7 +1725,7 @@ Opposite of `thenBypassIf()`_.
1725 1725
1726 Adds a new navigation step to click a given selector and optionally add a new navigation step in a single operation:: 1726 Adds a new navigation step to click a given selector and optionally add a new navigation step in a single operation::
1727 1727
1728 // Querying for "Chuck Norris" on Google 1728 // Click the first link in the casperJS page
1729 casper.start('http://casperjs.org/').thenClick('a', function() { 1729 casper.start('http://casperjs.org/').thenClick('a', function() {
1730 this.echo("I clicked on first link found, the page is now loaded."); 1730 this.echo("I clicked on first link found, the page is now loaded.");
1731 }); 1731 });
......