我正在使用selenium webdriver 2.32。有一个特定的领域
<input autocomplete="off" type="password" id="login_password" name="login_password" value="" class="restricted large" />
考虑:
ChromeDriver driver= new ChromeDriver();
WebElement passwordField = driver.findElement(By.xpath("//*[@id='login_password']");
System.out.println(passwordField.isDisplayed()); // returns true;
passwordField.sendKeys("password");
以上一行抛出异常:
Exception in thread "main" org.openqa.selenium.NoSuchElementException: no such element (Session info: chrome=26.0.1410.64)
autocomplete="Off"
是否重要?
感谢您的帮助。