gpt4 book ai didi

java - 如何在 selenium webdriver 中使用 css 检查按钮是否被禁用

转载 作者:行者123 更新时间:2023-11-30 02:02:07 28 4
gpt4 key购买 nike

我需要一些帮助来检查按钮是否被禁用,附上dom的屏幕截图以供引用,尝试了isEnabled()来自 WebDriver 的函数,但它返回 true。

Need to check if this button is disabled

最佳答案

您可以检查元素是否具有 disabled 属性。如果存在,您将获得 String 结果,如果不存在,您将获得 null

WebElement button = driver.findElement(locator);
bool isDisabled = button.getAttribute("disabled") != null;

关于java - 如何在 selenium webdriver 中使用 css 检查按钮是否被禁用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52510637/

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