我有一个包含所有用户的表,我想搜索列 {{user.name}} === 'X' 的用户。当我找到正确的行时,我想通过单击该行的最后一列来删除该条目。
element(by.repeater('user in allUsers')).then(function(rows) {
for (var i = 0; i < rows.length; ++i) {
// if the right row is found click on the last column to delete it
}
});
我得到一个 TypeError: Object # has no method 'then'
我在这里找到了我的解决方案,但这仍然是旧语法