gpt4 book ai didi

java - 想要识别具有 JSP core tag using selenium webdriver using xpath or any other locators 的元素

转载 作者:行者123 更新时间:2023-12-02 02:34:53 24 4
gpt4 key购买 nike

<tr class="odd" role="row">
<td>PRODTUT020</td>
<td>Product for tours</td>
<td>
<td>
<ul class="icons-list">
<c:if test="true">
<li class="text-info-600">
<a href="edit-se-product_mst-90" title="View">
<i class="icon-eye"/>
</a>
</li>
</c:if>
</ul>
</td>
</tr>

以上是 html 正文。想要点击图标-眼睛元素。我们如何使用 Selenium 定位器识别这个元素?

最佳答案

这个 XPath,

//tr[td="PRODTUT020"]//i[@class="icon-eye"]

将选择 tr 元素下方 @class 属性值为 icon-eyei 元素,该元素的 td 子项的字符串值为 PRODTUT020

根据一般情况下更不变的情况,您可以将 PRODTUT020 更改为 旅游产品 - 两者都适用于您展示的情况。

它避免了通过 // 跳过命名空间元素的命名。

关于java - 想要识别具有 JSP core<c :if> tag using selenium webdriver using xpath or any other locators 的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46525169/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com