gpt4 book ai didi

java - Selenium webdriver :org. openqa.selenium.InvalidElementStateException:元素已禁用,因此可能无法用于操作

转载 作者:行者123 更新时间:2023-12-01 13:41:04 25 4
gpt4 key购买 nike

我在尝试在 selenium webdriver 中写入简单代码以在 google 搜索页面中输入值并输入时收到此错误。以下是我的代码 -:

    WebDriver driver = new FirefoxDriver(profile);
driver.manage().timeouts().implicitlyWait(40, TimeUnit.SECONDS);
driver.get("http://www.google.com");

WebElement element=driver.findElement(By.xpath("//input[@id='gs_htif0']"));
boolean b = element.isEnabled();

if (b){

System.out.println("Enabled");
}

element.sendKeys("Test Automation");

element.submit();

有人可以帮我解决这个问题吗?如何启用禁用的元素?

最佳答案

您使用了错误的“输入法”来输入文本。您应该使用以下 XPath:

//input[@name='q']

喜欢

WebElement element=driver.findElement(By.xpath("//input[@name='q']"));

这个“输入”元素可以很好地接受输入文本。

关于java - Selenium webdriver :org. openqa.selenium.InvalidElementStateException:元素已禁用,因此可能无法用于操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20772696/

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