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