Protractor : Read Table contents
问题 I've been writing e2e tests for my angular js app and am unable to figure this out. I've got a table with data in it. I want to extract the first rows data. <table> <tr> <td><\td> <td><\td> <td><\td> </tr> </table> I did this in protractors elementExplorer and it prints out the values of all 3 columns element.all(by.repeater('item in items.list')).get(0).getText() James Byrne 1 If I do this, it prints out the first column value element.all(by.repeater('item in items.list')).get(0).element(by