我想測試一下,我的ng-repeat
會生成多個元素。使用量角器測量ng-repeat中的元素數量
<div ng-repeat="topic in topics">
<div class="topic-name">{{topic.name}}</div>
</div>
我該怎麼辦?我在文檔中找不到...
有沒有像這樣的東西?
expect(element.all(by.repeater('topic in topics')).count()).toBeMoreThan(1);
爲什麼你不能計算'主題'長度? – YD1m