gpt4 book ai didi

java - Selenium Webdriver - 验证文本框写保护?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:02:07 26 4
gpt4 key购买 nike

我们如何使用 Java 代码验证 Selenium 中的字段是否写保护(即只读)?

最好的问候

最佳答案

  1. isEnabled() 没有任何常见的只读的东西。
  2. String attribute = element.getAttribute("readonly"); 即使不存在“readonly”,您的测试也不会失败。在这种情况下,它返回 null,但我们需要异常(exception)。

像这样使用:

    WebElement some_element = driver.findElement(By.id("some_id"));
String readonly = some_element.getAttribute("readonly");
Assert.assertNotNull(readonly);

不要验证 getAttribute("readonly").equals("true") 或类似的,在不同的浏览器中它也可能不同。 (IE 中的 readonly="readonly",FF 中的 readonly=""等)

关于java - Selenium Webdriver - 验证文本框写保护?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9768622/

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