Fix Typo in Casper Module Docs
The code example in `waitForSelectorTextChange()` had an unterminated string literal on line 2172.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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(); | ... | ... |
-
Please register or sign in to post a comment