我想从ng-repeat的量角器测试用例中添加两个计数。但是我无法通过转发器获取计数对象。
html:
<div ng-repeat="act in actives">
<div>
<input id="checkbox-active" ng-model="act.checked"
ng-change="chooseActive(actInact)"/> {{actInact.name}}
</div>
<div><span id="active-count">{{actInact.count}}</span></div>
</div>
test.spec
this.getStateCount = function () {
var item = element.all(by.repeater('activeInactive in activeInactives'));
console.log("item"+item[0].count);
console.log("item"+item[0]);
item.getText().then(function(text){
console.log("text1+txt2"+text[0]+text[1]);
})
};
在控制台中将活动1设为不活动2。 当我尝试
console.log("item"+item[0].count); gives undefined
并引发异常。 并且项目作为对象对象而来。