1
我試圖選擇https://www.angularjs.org/上的所有todo。但它只是改變了第一個。如何選擇的所有元素:量角器ng-repeat
element.all(by.repeater('todo in todoList.todos')).then(function(rows) {
for (var i = 0; i < rows.length; ++i) {
element.all(by.repeater('todo in todoList.todos')).get(i).element(by.model('todo.done')).click();
}
});
嘗試了......它仍然沒有檢查第二個複選框 –
添加睡眠(1000)幫助檢查兩個框。 –
@mac_new好的,適當地更新了答案。謝謝。 – alecxe