0
Windows版でEclipseバージョン:Luna Release(4.4.0)を使用しています。セレン(V 2.53)のコードが正常に動作しています。しかしJunitを使用するとIDで要素を見つけることができません
f.get("https://mail.yahoo.com");
f.findElement(By.id("login-username")).sendKeys("jj%jo.com");
WebElement element = f.findElement(By.id("login-username"));
String text = element.getAttribute("value");
System.out.println(text);
、私はプロジェクトであるJunit v4.12とTestNGのを追加>ビルドパスコードは要素を見つけることができません。
@Test
public void testFindUsername(){
f.findElement(By.id("login-username")).click();
f.findElement(By.id("login-username")).sendKeys("[email protected]");
}
Error: Caused by: org.openqa.selenium.NoSuchElementException: Unable to locate element: {"method":"id","selector":"login-username"} For documentation on this error, please visit:
誰にも親切に私たちが解決策を知っている、この問題を持っていた場合。
はあなた
は、いくつかの待ち時間の後、感謝を – noor
は、それが動作するようになったURLを取得しますありがとうございました。 –