5

我有一个包含所有用户的表,我想搜索列 {{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'

我在这里找到了我的解决方案,但这仍然是旧语法

4

1 回答 1

7

您忘记调用该all函数:

element.all(by.repeater('user in allUsers')).then(function(rows) {
于 2013-11-11T19:05:28.123 回答