我有一个如下所示的页面对象:
<table border>
<th>Email</th>
<th>action</th>
<tr current-page="adminUsers.meta.page">
<td>admin@example.com</td>
<td><a href="" ng-click="adminUsers.onRemove(user, adminUsers.meta.page)">Delete permanently</a></td>
</tr>
<tr current-page="adminUsers.meta.page">
<td>matilda@snape.com</td>
<td><a href="" ng-click="adminUsers.onRemove(user, adminUsers.meta.page)">Delete permamently</a></td>
</tr>
</table>
我想创建一个方法,让我可以根据他的电子邮件地址删除用户。
这是我提出的,基于How to find and click a table element by text using Protractor?:
describe('Admin panel', function() {
it('admin deletes a user', function() {
var re = new RegExp("matilda@snape.com");
var users_list = element.all(by.xpath("//tr[@current-page='adminUsers.meta.page']"));
var delete_btn = element(by.xpath("//a[contains(text(), 'Delete permamently')]"));
users_list.filter(function(user_row, index) {
return user_row.getText().then(function(text) {
return re.test(text);
});
}).then(function(users) {
users[0].delete_btn.click();
});
// some assertion, not relevant right now
});
});
首先,我试图过滤我想要删除用户的行(所有行都适合我的过滤器的数组,然后选择第一行 - 无论如何都应该是一行),然后单击相应的删除按钮。
但是,从我的调试中我知道该方法忽略了过滤并单击表中可用的第一个Delete按钮而不是第一个来自过滤元素的按钮。 我做错了什么?
答案 0 :(得分:2)
在这种特殊情况下,我会使用XPath及其following-sibling
轴:
function deleteUser(email) {
element(by.xpath("//td[. = '" + email + "']/following-sibling::td/a")).click();
}
答案 1 :(得分:0)
我同意@ alexce&amp; s&amp; amp;优雅的答案,但@anks,为什么不删除你的过滤器?
describe('Admin panel', function() {
it('admin deletes a user', function() {
var re = new RegExp("matilda@snape.com");
var users_list = element.all(by.xpath("//tr[@current-page='adminUsers.meta.page']"));
var delete_btn = element(by.xpath("//a[contains(text(), 'Delete permamently')]"));
users_list.filter(function(user_row, index) {
return user_row.getText().then(function(text) {
return if(re.test(text)) { //assuming this checks the match with email id
user_row.delete_btn.click();
}
});
})
// some assertion, not relevant right now
});
});