首页 > Java > java教程 > 为什么 Selenium WebDriver 会抛出 ElementNotInteractableException,以及如何修复它?

为什么 Selenium WebDriver 会抛出 ElementNotInteractableException,以及如何修复它?

Susan Sarandon
发布: 2024-11-29 12:02:14
原创
842 人浏览过

Why Does Selenium WebDriver Throw an ElementNotInteractableException, and How Can I Fix It?

Selenium WebDriver 抛出 ElementNotInteractableException:故障排除和解决方案

简介:

在 Selenium WebDriver 中, ElementNotInteractableException 是常见的情况当尝试与不适合交互的状态的元素进行交互时。发生此错误的原因有多种,包括:

ElementNotInteractableException 的原因:

  • 临时叠加: 其他元素可能会暂时出现阻止目标元素,使其无法访问
  • 永久叠加:永久元素可能会永久遮挡目标元素,从而阻止点击。

ElementNotInteractableException 的解决方案:

1。使用显式等待:

  • 使用 WebDriverWait 和 ExpectedConditions.elementToBeClickable 等待目标元素变为可点击状态,然后再与其交互。

2.处理永久叠加:

  • 将 WebDriver 实例投射到 JavascriptExecutor 并直接在目标元素上执行 JavaScript click() 方法。

具体问题在提供的代码中:

Gmail 登录遇到的给定代码尝试输入密码时出现 ElementNotInteractableException。这可能是由于代码尝试发送密钥时密码字段未完全呈现。

针对所提供代码的解决方案:

实现显式等待在发送密钥之前,密码字段变为可点击。下面是更正后的代码:

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)); // Explicit wait
password.sendKeys("test1");
driver.findElement(By.id("passwordNext")).click();
登录后复制

此代码引入了显式等待,允许密码字段在尝试与其交互之前在 HTML DOM 中正确呈现,从而有效解决 ElementNotInteractableException 问题。

以上是为什么 Selenium WebDriver 会抛出 ElementNotInteractableException,以及如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!

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