How can I check if a page contains a certain piece of text with zombie.js? Do I just check the response and see if it has the string?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

If you don't use should you can do the following:

 assert browser.text('a:contains("Logout")')

If you use should.js you can do the following:

 browser.response.toString().should.include 'Logout'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.