sendKeys()为自动完成关闭的输入字段触发NoSuchElementException

时间:2013-04-25 23:33:28

标签: selenium-webdriver

我正在使用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"是否重要?

感谢您的帮助。

0 个答案:

没有答案