如何通过文本[量角器]在ng-table中查找特定行

时间:2015-09-22 11:01:47

标签: javascript angularjs selenium automated-tests protractor

我想通过第二列值从表中选择特定元素(我删除了渲染的空格),然后找到该元素之后我想点击它。 (真实的回报) 我试过这个,但它没有点击它,它只是找到了元素。

我要选择的该字段的html代码如下:

<table ng-table="tableParams" id="Panel" class="tbl-option-list" template-pagination="directives/controls/Pager/Pager.html">
    <caption translate>Orders</caption>
    <tr id="Panel">
        <!-- 1 -->
        <th class="fixed-width-glyphicon"></th>
        <!-- 2 -->
        <th translate>Identifier</th>
    </tr>
        <tr ng-repeat="item in $data track by $index" ng-class="{'active-bg': order.$selected}" ng-click="changeSelection(order,  getRowActions(order))">
        <!-- 1 -->
        <td class="fixed-width-glyphicon">
            <div class="fixed-width-glyphicon">
                {{item.priority.toUpperCase()[0]}}
            </div>
        </td>
        <!-- 2 -->
        <td>{{item.identifierCode}}</td>
    </tr>
</table>

量角器的select命令是:

element.all(by.repeater('item in $data track by $index')).filter(function(row) {
    row.getText().then(function(txt) {
        txt = txt.replace(/\s/g, '');
        var found = txt.split('ID0001');
        return found.length > 1;
    });
}).click();

量角器是一个基于Selenium的框架,用于角度js自动测试。即使是基于Selenium的解决方案也可以起作用......

1 个答案:

答案 0 :(得分:3)

你应该在尝试点击它们之前返回已过滤的元素。这是如何 -

element.all(by.repeater('item in $data track by $index')).filter(function(row) {
    return row.getText().then(function(txt) {
        txt = txt.replace(/\s/g, '');
        var found = txt.split('ID0001');
        return found.length > 1;
    });
}).then(function(elem){
    elem[0].click();
});

希望这有帮助。