網絡驅動無法命中提交按鈕,因爲沒有這樣的元素髮現錯誤。以下是運行腳本時在控制檯中顯示的代碼和錯誤。網絡驅動無法點擊提交按鈕,因爲沒有這樣的元素髮現錯誤
public void passwordmatch() {
driver.findElement(By.id("encrypted_pwd")).sendKeys(pwd);
driver.findElement(By.id("confirm_pwd")).sendKeys(confirm_pwd);
driver.findElement(By.xpath("//*[@id='submit-btn']//*[@type='image']")).click();
if(pwd ==confirm_pwd) {
System.out.println("Password Match");
} else {
System.out.println("Password doesn't Match");
}
}
錯誤信息是:
org.openqa.selenium.NoSuchElementException: Unable to locate element:
{"method":"xpath","selector":"//*[@id='submit-btn']//*[@type='image']"}
Command duration or timeout: 30.04 seconds
請你能分享頁面的HTML? –
網站的網址是:http://talentrack.in/register,你可以在這裏檢查 –