如何根据 Selenium 中单元格的文本定位表格行?
如何使用以下 HTML 代码段根据表格单元格数据定位表格行:
<table id="BetaCustomersTable>
<s:iterator>
<tr>
<td class="userTabletd">
<s:property value="email" />
</td>
</tr>
</s:iterator>
</table>
How do I locate a table row based on table cell data using the following HTML snippet:
<table id="BetaCustomersTable>
<s:iterator>
<tr>
<td class="userTabletd">
<s:property value="email" />
</td>
</tr>
</s:iterator>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要基于包含具有特定文本的单元格来定位表行,您可以使用以下 XPath 定位器:
To locate a table row based on it containing a cell with specific text you can use the following XPath locator: