gpt4 book ai didi

java - Selenium Webdriver FindElement() 方法不起作用(NoSuchElementException)

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

所以我的问题很简单。这是我的代码:

    driver.findElement(By.id("j_username")).sendKeys("nk");
driver.switchTo().frame(0);
driver.findElement(By.id("j_password")).sendKeys("1");

第一个 findElement() 方法工作正常,但是当我第二次尝试使用它时,我收到此错误:

org.openqa.selenium.NoSuchElementException: no such element: Unable to locate element: {"method":"id","selector":"j_password"}

所有 ID 均正确。

最佳答案

试试这个:

driver.findElement(By.id("j_username")).sendKeys("nk");
driver.findElement(By.name("j_password")).sendKeys("1"); // find by name

第二个元素没有 id,至少在您提供的 HTML 中是这样。

关于java - Selenium Webdriver FindElement() 方法不起作用(NoSuchElementException),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51382268/

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