javascript – 量角器:阅读表格内容

前端之家收集整理的这篇文章主要介绍了javascript – 量角器:阅读表格内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在为我的角度js应用程序编写e2e测试,我无法弄清楚这一点.我有一张包含数据的表格.我想提取第一行数据.
<table>
    <tr>
        <td><\td>
        <td><\td>
        <td><\td>
    </tr>
</table>

我在protractors elementExplorer中做了这个,它打印出所有3列的值

element.all(by.repeater('item in items.list')).get(0).getText()
James
Byrne
1

如果我这样做,它会打印出第一列值

element.all(by.repeater('item in items.list')).get(0).element(by.css('td')).getText()
WARNING - more than one element found for locator By.cssSelector("td") - the first result will be used
James

我的问题是,如何获取其他列的值?

解决方法

all()map()结合使用:
var row = element.all(by.repeater('item in items.list')).first();
var cells = row.all(by.tagName('td'));

var cellTexts = cells.map(function (elm) {
    return elm.getText();
});

然后,您可以将其断言为列文本数组:

expect(cellTexts).toEqual(["The first text","The second text","The third text"]);
原文链接:https://www.f2er.com/js/154388.html

猜你在找的JavaScript相关文章