gpt4 book ai didi

javascript - 如何通过文本 [protractor] 在 ng-table 中查找特定行

转载 作者:行者123 更新时间:2023-11-29 10:38:42 25 4
gpt4 key购买 nike

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

我要选择的那个文件的 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>

Protractor 的选择命令是:

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();

Protractor 是一个基于 Selenium 的框架,用于 Angular js 自动化测试。即使是基于 Selenium 的解决方案也可能有效...

最佳答案

我想你应该在尝试点击它们之前返回过滤后的元素。方法如下 -

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();
});

希望这对您有所帮助。

关于javascript - 如何通过文本 [protractor] 在 ng-table 中查找特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32715162/

25 4 0