org.openqa.selenium.NoSuchElementException: Unable to locate element: 异常解决方法
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
现象:出现报错org.openqa.selenium.NoSuchElementException: Unable to locate element
原因:进入网页时,网页可能在loading中,因此找不到元素。
解决方法:你可以让他休眠Thread.sleep(2000),即休眠2秒,应该可以找到元素了。
将Thread.sleep(2000)加在
System.setProperty("webdriver.firefox.bin","D:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");
WebDriver driver = new FirefoxDriver();
driver.get("http://localhost:9090/jenkins");
Thread.sleep(2000);
driver.findElement(By.id("j_username")).sendKeys("admin");
driver.findElement(By.name("j_password")).sendKeys("b7588402d6ee48f5847ff6f7491c3dd2");
driver.findElement(By.id("yui-gen1-button")).click();
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:2 个月前 )
c345bb45
6 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)