我只需要在下面的量角器功能中做错误。我得到数组为空。代码在
之下function(){
var arrVal=[];
elem = element.all(by.xpath('//div[contains(@class,"header-col")]/div'));
elem.each(function(elementVar) {
elementVar.getAttribute('title').then(function(val){
arrVal.push(val.toString());
});
});
console.log(arrVal.len);
}