扫码关注官方订阅号
我一直在尝试使用代码单击网页中的选项卡
Set P = D.FindElementByCss("a[href='#pro-content-pro']") P.Click
如果选项卡在网页中可见,则上述代码可以正常工作,如果选项卡不可见,则不起作用。以下是 HTML 代码
当可见时
不可见时
如果选项卡不可见,请向我建议正确的代码,然后跳过,否则单击选项卡(如果选项卡可见)。
非常感谢。
如果你使用 Selenium,那么试试这个
Set P = D.FindElementByCss("a[href='#pro-content-pro']") If P.Attribute("class")="disabled" Then Else P.Click End If
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
如果你使用 Selenium,那么试试这个
Set P = D.FindElementByCss("a[href='#pro-content-pro']") If P.Attribute("class")="disabled" Then Else P.Click End If