ElementNotInteractableException
根据文档,ElementNotInteractableException是抛出的 W3C 异常,表明尽管元素存在于DOM 树上,但它不处于可以交互的状态。
原因及解决方案:
ElementNotInteractableException发生的原因可能很多。
在我们感兴趣的WebElement上临时覆盖其他WebElement :
在这种情况下,直接的解决方案是诱导ExplicitWait即WebDriverWait结合ExpectedCondition
如下invisibilityOfElementLocated
:
WebDriverWait wait2 = new WebDriverWait(driver, 10);
wait2.until(ExpectedConditions.invisibilityOfElementLocated(By.xpath("xpath_of_element_to_be_invisible")));
driver.findElement(By.xpath("xpath_element_to_be_clicked")).click();
更好的解决方案是获得更细粒度的,而不是ExpectedCondition
像invisibilityOfElementLocated
我们可以使用ExpectedCondition
的那样使用elementToBeClickable
,如下所示:
WebDriverWait wait1 = new WebDriverWait(driver, 10);
WebElement element1 = wait1.until(ExpectedConditions.elementToBeClickable(By.xpath("xpath_of_element_to_be_clicked")));
element1.click();
其他WebElement永久覆盖在我们感兴趣的WebElement上:
如果在这种情况下覆盖是永久覆盖,我们必须将WebDriver实例转换为JavascriptExecutor并执行单击操作,如下所示:
WebElement ele = driver.findElement(By.xpath("element_xpath"));
JavascriptExecutor executor = (JavascriptExecutor)driver;
executor.executeScript("arguments[0].click();", ele);
现在解决这个特定上下文中的错误ElementNotInteractableException我们需要添加ExplicitWait即WebDriverWait,如下所示:
您需要等待密码字段在HTML DOM 中正确呈现。您可以考虑为它配置一个ExplicitWait。以下是使用 Mozilla Firefox 登录 Gmail 的工作代码:
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("error59878@gmail.com");
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();