当前位置: 首页 > 面试题库 >

将Selenium与Mozilla的GeckoDriver结合使用时,找不到CircularOutputStream类异常

郎飞航
2023-03-14
问题内容

使用Java Selenium Firefox geckodriver时出现问题。这是问题所在:

*操作系统:Windows 7

*硒版本:Selenium 3.0.0 beta4

  • Java:8

  • Geckodriver:v0.10.0

错误消息:线程“主”中的异常java.lang.NoClassDefFoundError:org.openqa.selenium.firefox.FirefoxBinary中的org
/ openqa / selenium / remote / internal /
CircularOutputStream。(FirefoxBinary.java:56)在org.openqa.selenium中org.openqa.selenium.firefox.FirefoxDriver。(FirefoxDriver.java:92)上的.firefox.FirefoxBinary。(FirefoxBinary.java:52),tools.Cadencie.main(上,tools.Cadencie.LoginCad(Cadencie.java:24))
Cadencie.java:73)at sun.reflect.NativeMethodAccessorImpl.invoke0(本地方法)at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
.lang.reflect.Method.invoke(Method.html" target="_blank">java:498)位于com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)由以下原因引起:java.lang.ClassNotFoundException:org.openqa.selenium.remote.internal.CircularOutputStream
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)at
java.lang.ClassLoader.loadClass(ClassLoader.java: 424)at sun.misc.Launcher $
AppClassLoader.loadClass(Launcher.java:331)at
java.lang.ClassLoader.loadClass(ClassLoader.java:357)…还有10

码:

public class Cadencie {

static WebDriver driver;

public void LoginCad(){

    //System.setProperty("webdriver.firefox.bin", "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");

    System.setProperty("webdriver.gecko.driver", "C:\\Program Files (x86)\\Mozilla Firefox\\geckodriver.exe");

    driver = new FirefoxDriver();

    driver.get("http://172.16.1.133:8090/CADENCIE/servlet/app");

    try {

        Thread.sleep(1000);

    } catch(InterruptedException e){

        e.printStackTrace();

    }

    Utilities.switchToWindow("Cadencie - User Logon [LOGON]", driver);

    try{

        Thread.sleep(2000);

    } catch(InterruptedException e){

        e.printStackTrace();

    }

    driver.findElement(By.id("idBANK")).clear();
    driver.findElement(By.id("idBANK")).sendKeys("48");

    driver.findElement(By.id("idEMPLOYEE")).clear();
    driver.findElement(By.id("idEMPLOYEE")).sendKeys("200003");

    driver.findElement(By.id("idPASSWORD")).clear();
    driver.findElement(By.id("idPASSWORD")).sendKeys("Cadencie1");

    driver.findElement(By.id("maintLOGON")).click();

    driver.findElement(By.id("idPASSWORD")).clear();
    driver.findElement(By.id("idPASSWORD")).sendKeys("Cadencie1");

    driver.findElement(By.id("maint")).click();

}

我认为这可能是版本不一致的问题。因为我有另一个正在使用maven的自动化项目,所以硒2.52.0
..但不确定是否会引起问题。我这次不使用Maven。只需尝试创建JAVA GUI程序(工具包)。


问题答案:

发生异常是因为缺少的jar文件classpath

如果您不使用Maven,请检查“
在MVN存储库中的编译依赖项”页面,然后将jar手动添加到您的类路径中。

如果您使用的是Maven,请参见:java.lang.classnotfoundexception:org.openqa.selenium.io.Circular
OutputStream



 类似资料:
  • 问题内容: 使用Java Selenium Firefox geckodriver时出现问题。这是问题所在: OS:Windows 7 selenium ersion:Selenium 3.0.0 beta4 Java:8 Geckodriver:v0.10.0 Error msg: Exception in thread “main” java.lang.NoClassDefFoundError

  • *爪哇:8 *GeckoDriver:V0.10.0 错误MSG:线程“main”java.lang.noClassDeffounderror:org.openqa.selenium.firefox.firefoxBinary的org/openqa/selenium/remote/internal/circularoutputstream.(firefoxBinary.firefoxBinary.

  • 问题内容: 我的开发目录中安装了geckodriver 我还导出到$ PATH变量 但是当我尝试在项目的Rails控制台上初始化webdriver的实例时,我得到了 驱动程序= Selenium :: WebDriver.for:firefox Selenium :: WebDriver :: Error :: WebDriverError:无法找到Mozilla geckodriver。请从ht

  • 问题内容: 我已导入以下内容,但在使用时仍然出现错误 注意:我在Eclipse中使用Selenium WebDriver。 示例代码如下。 我收到一条错误消息,指出 指向线 你们其中一个能让我知道这里有什么不对吗? 问题答案: 您可以尝试使用此方法,这里已解决了类似的问题#sendKeys问题 或简单地

  • 问题内容: 我的目标是通过Python将Adblock Plus与Selenium结合使用。我已经能够将其加载到扩展程序中,但是默认情况下,它不包含默认过滤器“ EasyList”。这是我到目前为止的内容: 大部分代码都是从http://selenium- python.readthedocs.org/en/latest/faq.html 剥离的 问题答案: 实际上,默认情况下,Adblock P

  • 无法使用以下方式运行基本selenium代码: 火狐52 ESR 硒罐3.141.59 Geckodriver-v0.23.0-Win64 代码测试(test.java):