I am attempting to choose all of the tasks on . Unfortunately, only the first one is being updated. What can I do to select all of the elements:
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();
}
});