にユーザー名とパスワードを入力することができません:way2automation登録ページでユーザー名とパスワードを入力しようとしているときに、私は次のエラーメッセージを取得していますway2automation.com
org.openqa.selenium.remote.ProtocolHandshakeのCreateSession
INFO :検出方言:OSS
org.openqa.selenium.ElementNotVisibleException:後
見えない要素が私のコードです:
public void SignIn() {
try {
driver.findElement(By.linkText("Signin")).click();
Thread.sleep(3000);
driver.findElement(By.xpath("//*[@id=\"load_form\"]/fieldset[6]/input")).sendKeys("ankit_21");
driver.findElement(By.xpath("//*[@id=\"load_form\"]/fieldset[7]/input")).sendKeys("automation");
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
も同様に動作しませんでした
findElement(By.name("password")).sendKeys("automation");
によって要素を検索してみました。 、あなたが最初のポップアップウィンドウに切り替える必要があり
driver.findElement(By.xpath("//input[@id='user_email']")).sendKeys("ankit_21");
driver.findElement(By.xpath("//input[@id='user_password']")).sendKeys("automation");
新しいウィンドウに切り替える必要があります。 – lauda
ここにコードのhtml部分を貼り付けてください –