简介:
在 Selenium WebDriver 中, ElementNotInteractableException 是常见的情况当尝试与不适合交互的状态的元素进行交互时。发生此错误的原因有多种,包括:
ElementNotInteractableException 的原因:
ElementNotInteractableException 的解决方案:
1。使用显式等待:
2.处理永久叠加:
具体问题在提供的代码中:
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中文网其他相关文章!