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

Posted

技术标签:

【中文标题】Selenium WebDriver 在线程“main”org.openqa.selenium.ElementNotInteractableException 中抛出异常【英文标题】:Selenium WebDriver throws Exception in thread "main" org.openqa.selenium.ElementNotInteractableException 【发布时间】:2017-11-25 05:39:20 【问题描述】:

测试场景:尝试捕获并测试 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】:

ElementNotInteractableException

根据文档,ElementNotInteractableException 是 W3C 异常,它被抛出以表明虽然 DOM Tree 上存在元素,但它不处于可以交互的状态。

原因及解决方案:

ElementNotInteractableException 发生的原因有很多。

    在我们感兴趣的 WebElement 上临时覆盖其他 WebElement

    在这种情况下,直接的解决方案是诱导 ExplicitWaitWebDriverWait 结合 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,我们需要添加 ExplicitWaitWebDriverWait,如下所示:

您需要诱导一点 wait,以便 Password 字段在 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();

【讨论】:

非常感谢!它现在工作。如果我们使用 classname ,我注意到类名正在发生变化。

以上是关于Selenium WebDriver 在线程“main”org.openqa.selenium.ElementNotInteractableException 中抛出异常的主要内容,如果未能解决你的问题,请参考以下文章

Selenium WebDriver 多线程和浏览器隐藏使用 Java

线程“主”java.lang.NoClassDefFoundError 中的异常:org/openqa/selenium/WebDriver

我收到“线程“主”java.lang.NoClassDefFoundError:org/openqa/selenium/WebDriver 中的异常”

如何在 JMeter 的 Webdriver Sampler 中使用 Selenium

译使用WebDriver采样器将JMeter与Selenium集成

Web UI自动化测试之Selenium3