在CSS选择器中使用&&,

问题描述 投票:0回答:2

我需要使用CSS选择器在标记为的硒代码中使用

<div id="pbpopup-container" style="border-radius: 10px !important; box-shadow: rgb(170, 170, 170) 1px 1px 5px !important; display: block !important; overflow: hidden !important; position: fixed !important; right: 20px !important; top: 20px !important; visibility: visible; z-index: 2147483647; border: none !important; opacity: 1; bottom: auto !important; height: auto; width: auto;">

从这个标签中,我需要一个CSS选择器,例如'// div [@ id ='pbpopup-container']和可见性:可见”,任何人都可以提供帮助。

selenium selenium-webdriver css-selectors
2个回答
0
投票

由于我现在手头没有硒,请带一点盐服用:

//div[@id="pbpopup-container"](contains(@style,'visibility:visible'))]

0
投票

这里是您要查找的CSS。

div[style*='visibility: visible']#pbpopup-container

截屏:enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.