量角器:
我在页面上定义了变量(var rowcount
),现在我想用这个值在测试套件上创建循环。
var rows = tabledata.all(by.tagName("tr"));
var cells = rows.all(by.tagName("td"));
var rowcount=rows.count;
这会有用吗?
if("Validate page data. ", function ()
{
for(var i=0; i<rowscount;i++)
{
................................
}
})
答案 0 :(得分:0)
以这种方式使用它:
rows.count().then(function(count){
for(var i=0; i<count; i++){
}
});