Selenium WebDriver 在线程“main”org.openqa.selenium.ElementNotInteractableException
问题:
在硒中WebDriver 测试场景旨在捕获和测试 Gmail 登录,在尝试输入密码时,测试失败并出现“ElementNotInteractableException”。
原因:
“ElementNotInteractableException”当 WebDriver 遇到无法与之交互的元素时抛出,尽管该元素存在于 HTML 中DOM.
解决方案:
具体针对此问题:
在这种情况下,原因是缺少显式等待密码字段在 HTML DOM 中变得可呈现。添加带有 ExpectedCondition“elementToBeClickable”的 ExplicitWait 可以解决此问题。
代码解决方案:
... WebDriver driver = new FirefoxDriver(); ... // Wait up to 20 seconds for the password field to become clickable WebDriverWait wait = new WebDriverWait(driver, 20); wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//input[@name='password']"))); password.sendKeys("test1"); ...
通过实施此解决方案,测试应该顺利进行,捕获密码正确并完成 Gmail 登录测试。
以上是为什么我的 Selenium WebDriver Gmail 登录测试在输入密码时抛出'ElementNotInteractableException”?的详细内容。更多信息请关注PHP中文网其他相关文章!