expect.element().text() Suggest edits
Since: v0.7Property that retrieves the text contained by an element. Can be chained to check if contains/equals/matches the specified text or regex.
Usage
Example
this.demoTest = function (browser) {
browser.expect.element('#main').text.to.equal('The Night Watch');
browser.expect.element('#main').text.to.not.equal('The Night Watch');
browser.expect.element('#main').text.to.equal('The Night Watch').before(100);
browser.expect.element('#main').text.to.contain('The Night Watch');
browser.expect.element('#main').text.to.match(/The\ Night\ Watch/);
};