最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to get iterator indexkey using protractor + angular? - Stack Overflow

programmeradmin2浏览0评论

Is there a way to access the iterator index/key when looking for elements by repeater?

protractor.By.repeater("(id,cat) in pets")

In this case I'm looking to get access to "id" of the cat. The "id" is NOT one of the columns displayed as a value in the table, it is used for navigation as ng-click="goto('/pets/'+cat.id)". There is no binding in the HTML such as {{id}} or {{cat.id}} so doing the following:

ptor.findElements(protractor.By.repeater("(id,cat) in pets").column('cat.id'))

returns an empty element: []

I've also, unsuccessfully, tried doing something like:

ptor.findElement(protractor.By.repeater("(id,cat) in pets").row(0).column('cat.id'))

What is the correct way to access that specific index?

Here's the non-shortened syntax of the answer by Jmr:

ptor.findElements(protractor.By.repeater('(id, cat) in pets')).then(function (arr) {
    arr[0].evaluate('cat.id').then(function (id) {
        console.log(id);
    }); 
});

Is there a way to access the iterator index/key when looking for elements by repeater?

protractor.By.repeater("(id,cat) in pets")

In this case I'm looking to get access to "id" of the cat. The "id" is NOT one of the columns displayed as a value in the table, it is used for navigation as ng-click="goto('/pets/'+cat.id)". There is no binding in the HTML such as {{id}} or {{cat.id}} so doing the following:

ptor.findElements(protractor.By.repeater("(id,cat) in pets").column('cat.id'))

returns an empty element: []

I've also, unsuccessfully, tried doing something like:

ptor.findElement(protractor.By.repeater("(id,cat) in pets").row(0).column('cat.id'))

What is the correct way to access that specific index?

Here's the non-shortened syntax of the answer by Jmr:

ptor.findElements(protractor.By.repeater('(id, cat) in pets')).then(function (arr) {
    arr[0].evaluate('cat.id').then(function (id) {
        console.log(id);
    }); 
});
Share Improve this question edited Nov 26, 2013 at 14:54 Nik asked Nov 22, 2013 at 20:45 NikNik 7,2026 gold badges39 silver badges53 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

You're looking to evaluate something that's not on the page, so the 'row' and 'column' methods won't work. If you just use the repeater, you will get an array of all of the rows. You can then use the evaluate mand to evaluate Angular expressions in the context of that element. For example (using shortened syntax),

element.all(by.repeater('(id, cat) in pets')).then(function(arr) {
  arr[0].evaluate('cat.id'); // This is a promise which resolves to the id.
});
发布评论

评论列表(0)

  1. 暂无评论