expect.element().present Suggest edits
Since: v0.7Property that checks if an element is present in the DOM.
Usage
Example
this.demoTest = function (browser) {
browser.expect.element('#main').to.be.present;
browser.expect.element('#main').to.not.be.present;
browser.expect.element('#main').to.be.present.before(100);
};