expect.element().visible Suggest edits
Property that asserts the visibility of a specified element.
Usage
Example
this.demoTest = function (browser) {
browser.expect.element('#main').to.be.visible;
browser.expect.element('#main').to.not.be.visible;
browser.expect.element('#main').to.be.visible.before(100);
};