如何从量角器的中继器内部的中继器中获取计数?

时间:2019-04-10 06:34:26

标签: protractor

我要计算量角器中嵌套在另一个中继器中的中继器

var t2 = element.all(by.css('.footable.table.table-stripped.default.footable-loaded > tbody tr')).each(function(element, index){
        element.all(by.repeater("el in punchApproval| filter : filterEmpSearch | orderBy:'Emp_Code' track by $index ")).each(function(element, text){
            element.all(by.repeater("yl in el.PunchReq_sub")).count().then(function(cnt){
         console.log("Count rw:" +index +"rw desc"+text+"count"+cnt) ;
            });
     });

1 个答案:

答案 0 :(得分:0)

存储由repeater属性标识的列表,然后必须具有唯一的名称 使用console.log(list)打印它。其中list包含您拥有的中继器中的元素。

让列表= element.all(by.repeater('。items li'));