首页 > Java > java教程 > 为什么 Selenium 在 Gmail 登录自动化过程中抛出'ElementNotInteractableException”?

为什么 Selenium 在 Gmail 登录自动化过程中抛出'ElementNotInteractableException”?

Mary-Kate Olsen
发布: 2024-11-26 09:21:09
原创
405 人浏览过

Why Does Selenium Throw

Selenium WebDriver 引发的“ElementNotInteractableException”

尝试使用 Selenium WebDriver 自动登录 Gmail 时,用户可能会遇到“ElementNotInteractableException”错误。此错误表明网页上的某些元素未处于允许交互的状态。

原因和解决方案

“ElementNotInteractableException”的常见原因和解决方案包括:

  • 临时覆盖:如果另一个元素如果与目标元素重叠,则可以使用“WebDriverWait”与 ExpectedCondition 结合使用作为“invisibilityOfElementLocated”或“elementToBeClickable”来引发显式等待,以等待覆盖层消失,然后再与元素交互。
  • 永久Overlay: 当覆盖是永久的时,将 WebDriver 实例强制转换为 JavascriptExecutor 并执行“参数[0].click();”可以用来执行点击操作。

解决此上下文中的错误

在提供的代码中,错误是由于缺少等待而导致的以便密码字段在 HTML DOM 中正确呈现。使用“WebDriverWait”添加显式等待可以解决该问题:

System.setProperty("webdriver.gecko.driver","C:\Users\Ruchi\workspace2\SeleniumTest\jar\geckodriver-v0.17.0-win64\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.manage().window().maximize();
String url = "https://accounts.google.com/signin";
driver.get(url);
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
WebElement email_phone = driver.findElement(By.xpath("//input[@id='identifierId']"));
email_phone.sendKeys("[email protected]");
driver.findElement(By.id("identifierNext")).click();
WebElement password = driver.findElement(By.xpath("//input[@name='password']"));
WebDriverWait wait = new WebDriverWait(driver, 20);
wait.until(ExpectedConditions.elementToBeClickable(password));
password.sendKeys("test1");
driver.findElement(By.id("passwordNext")).click();
登录后复制

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

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