首页 > Java > java教程 > 如何在 Gmail 登录自动化过程中解决 Selenium 的'ElementNotInteractableException”?

如何在 Gmail 登录自动化过程中解决 Selenium 的'ElementNotInteractableException”?

Mary-Kate Olsen
发布: 2024-11-26 14:28:13
原创
803 人浏览过

How to Resolve Selenium's

Selenium WebDriver Elements 异常:解决 Gmail 登录自动化的“ElementNotInteractableException”

尝试使用 Selenium WebDriver 自动执行 Gmail 登录时,用户可能会遇到"ElementNotInteractableException。"

什么是 ElementNotInteractableException?

此异常表示元素虽然存在于 DOM 中,但并未处于可以使用的状态互动。

原因及解决方案ElementNotInteractableException

此异常的原因可能有所不同。以下是一些常见原因和解决方案:

  • 临时重叠:另一个元素可能会暂时与目标元素重叠。使用“ExpectedConditions.invisibilityOfElementLocated”或“ExpectedConditions.elementToBeClickable”等待来解决此问题。
  • 永久覆盖: 永久覆盖需要使用 JavascriptExecutor 来执行单击操作,如示例中所示代码

Gmail 登录自动化的具体解决方案

在使用 Firefox 的 Gmail 自动化登录上下文中,可以通过添加来解决“ElementNotInteractableException”使用 WebDriverWait 的显式等待。以下更新的代码说明了这一点:

System.setProperty("webdriver.gecko.driver", "C:UsersRuchiworkspace2SeleniumTestjargeckodriver-v0.17.0-win64geckodriver.exe");<br>WebDriver driver =新的FirefoxDriver();<br>driver.manage().window().maximize();<br>String url = "https://accounts.google.com/signin";<br>driver.get(url) ;<br>driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); <br>WebElement email_phone = driver.findElement(By.xpath("//input[@id='identifierId']"));<br>email_phone.sendKeys("[email protected]");<br>driver. findElement(By.id("identifierNext")).click();<br>WebElement 密码 = driver.findElement(By.xpath("//input[@name='password']"));<br>WebDriverWait wait = new WebDriverWait(driver, 20);<br>wait.until(ExpectedConditions.elementToBeClickable(password));<br>password.sendKeys("test1");<br>driver.findElement(By.id("passwordNext")).click() ;<br>

通过合并显式等待, WebDriver 会等到“密码”字段呈现并可单击后再与之交互,解决“ElementNotInteractableException”并实现成功的登录自动化。

登录后复制

以上是如何在 Gmail 登录自动化过程中解决 Selenium 的'ElementNotInteractableException”?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板