检查由选择器指定的元素数量是否等于或不等于给定值。

用法

示例

this.demoTest = function (browser) {
  browser.expect.elements('div').count.to.equal(10);
  browser.expect.elements('p').count.to.not.equal(1);
}