如何使用Selenium WebDriver验证元素中是否存在属性?

如何使用Selenium WebDriver验证元素中是否存在属性?,第1张

如何使用Selenium WebDriver验证元素中是否存在属性?

您可以创建一种方法来正确处理它。请注意,以下是C#/ Java混合样式,您需要稍作调整以进行编译

private boolean isAttribtuePresent(WebElement element, String attribute) {    Boolean result = false;    try {        String value = element.getAttribute(attribute);        if (value != null){ result = true;        }    } catch (Exception e) {}    return result;}

如何使用它:

WebElement input = driver.findElement(By.cssSelector("input[name*='response']"));Boolean checked = isAttribtuePresent(input, "checked");// do your assertion here


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5462843.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存