Commit 19eb2966 19eb2966c80a02ecf4b77c3f46430b7be3e35e8e by Ben Johnson

Fixed a small documentation bug with assertSelectorHasText()

1 parent 4817c308
......@@ -299,7 +299,7 @@ Asserts that given text exists in elements matching the provided :ref:`selector
casper.test.begin('assertSelectorHasText() tests', 1, function(test) {
casper.start('http://google.com/', function() {
test.assertSelectorDoesntHaveText('title', 'Google');
test.assertSelectorHasText('title', 'Google');
}).run(function() {
test.done();
});
......