Property that checks if an OPTION element, or an INPUT element of type checkbox or radio button is currently selected.

Usage

Example

this.demoTest = function (browser) {
  browser.expect.element('#main').to.be.selected;
  browser.expect.element('#main').to.not.be.selected;
  browser.expect.element('#main').to.be.selected.before(100);
};