Selenium WebDriver在线程" main"中抛出异常。 org.openqa.selenium.ElementNotInteractableException

时间:2017-06-22 05:39:02

标签: java selenium selenium-webdriver

测试场景:尝试捕获并测试Gmail登录信息。

当前输出: Mozilla实例打开。输入用户名但是 WebDriver代码未输入密码。

System.setProperty("webdriver.gecko.driver", "C:\\Users\\Ruchi\\workspace2\\SeleniumTest\\jar\\geckodriver-v0.17.0-win64\\geckodriver.exe");
FirefoxDriver  varDriver=new FirefoxDriver();

varDriver.get("http://gmail.com");  
WebElement webElem=  varDriver.findElement(By.id("identifierId"));
webElem.sendKeys("error59878@gmail.com");
WebElement nextButton=varDriver.findElement(By.id("identifierNext"));
nextButton.click();

varDriver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

WebElement wePass=varDriver.findElement(By.cssSelector(".rFrNMe.P7gl3b.sdJrJc.Tyc9J"));

wePass.sendKeys("test1");

1 个答案:

答案 0 :(得分:6)

ElementNotInteractableException

根据文档, ElementNotInteractableException 是W3C异常,抛出此异常表示尽管DOM Tree上存在一个元素,但它不处于可以与之交互的状态

原因&解决方案:

ElementNotInteractableException 发生的原因可能很多。

  1. 我们感兴趣的 WebElement 上的其他 WebElement 的临时叠加层:

    在这种情况下,直接解决方案是将 ExplicitWait WebDriverWait ExpectedCondition结合使用 invisibilityOfElementLocated < / strong>如下:

    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用作 {{ 1}} 如下:

    elementToBeClickable
  2. 我们感兴趣的 WebElement 上的其他 WebElement 的永久叠加:

    如果在这种情况下叠加层是永久性叠加层,我们必须将 WebDriver 实例强制转换为 JavascriptExecutor 并执行点击操作,如下所示:

    WebDriverWait wait1 = new WebDriverWait(driver, 10);
    WebElement element1 = wait1.until(ExpectedConditions.elementToBeClickable(By.xpath("xpath_of_element_to_be_clicked")));
    element1.click();
    
  3. 现在在此特定上下文中解决错误 ElementNotInteractableException ,我们需要添加 ExplicitWait ,即 WebDriverWait ,如下所示:

    您需要为密码字段引入一些等待,才能在HTML DOM中正确呈现。您可以考虑为它配置 ExplicitWait 。以下是使用Mozilla Firefox登录Gmail的工作代码:

    WebElement ele = driver.findElement(By.xpath("element_xpath"));
    JavascriptExecutor executor = (JavascriptExecutor)driver;
    executor.executeScript("arguments[0].click();", ele);