在我的 Selenium 应用程序中,我尝试选择具有最高z-index
. 该值不是在元素本身中定义的,而是在祖先节点上定义的(嵌套级别未知)。此外,如果使用display: none
它的祖先不可见,则不应返回。
示例 HTML:
<div class="container" style="z-index: 10">
<div style="display: none">
<!-- this should not be selected because it is invisible (and the z-index is lower than the others) -->
<div myattr="example"></div>
</div>
</div>
<div class="container" style="z-index: 100">
<div>
<!-- this should not be selected because the z-index is lower than the others -->
<div myattr="example"></div>
</div>
</div>
<div class="container" style="z-index: 1000">
<div>
<!-- this should be selected because it is visible and has the highest z-index -->
<div myattr="example"></div>
</div>
</div>
目前我有一个正则表达式,它选择所有myattr="example"
没有祖先的元素display: none
:
//div[@myattr='example'
and not(ancestor::div[contains(@style,'display:none')])
and not(ancestor::div[contains(@style,'display: none')])]
我需要一个附加条件来选择具有最高 z-index 的元素,可以说是在其他元素之上可见。对于每个找到的节点,必须查看所有祖先,直到找到具有特定类的节点(container
在本例中)。然后只返回具有最高 z-index 祖先的元素。
XPath 甚至可以做到这一点吗?