.count() 建议编辑
自:v1.1检查由选择器指定的元素数量是否等于或不等于给定值。
用法
示例
this.demoTest = function (browser) {
browser.expect.elements('div').count.to.equal(10);
browser.expect.elements('p').count.to.not.equal(1);
}
检查由选择器指定的元素数量是否等于或不等于给定值。
this.demoTest = function (browser) {
browser.expect.elements('div').count.to.equal(10);
browser.expect.elements('p').count.to.not.equal(1);
}