gpt4 book ai didi

java - 在 JAva 8 中使用最新的 selenium 版本会出现 LoggingHandler 错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:03:40 26 4
gpt4 key购买 nike

我正在尝试运行一个简单的 selenium 脚本,该脚本打开 chrome 驱动程序以导航到 url。下面是我的代码:

WebDriver driver =new ChromeDriver();
driver.get("http://www.google.com");
WebElement element=driver.findElement(By.name("q"));
element.sendKeys("Cheese!!!");
element.submit();
System.out.println("Page title is: " + driver.getTitle());
driver.quit();

运行代码时出现以下错误:

Exception in thread "main" java.lang.NoClassDefFoundError: org/openqa/selenium/logging/LoggingHandler
at Main.main(Main.java:16)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
Caused by: java.lang.ClassNotFoundException: org.openqa.selenium.logging.LoggingHandler
at java.net.URLClassLoader$1.run(URLClassLoader.java:372)
at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:360)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)

我的 pom 文件有这些依赖项:

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>3.4.0</version>
</dependency>

导致上述错误的原因是什么?我试过在线搜索,但找不到一个答案。

最佳答案

错误似乎是它没有找到类LoggingHandler。该类通常位于 selenium-api 依赖项中。您可以尝试使用 2.53.1 版本而不是 3.4.0。该版本缺少类。

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>2.53.1</version>
</dependency>

关于java - 在 JAva 8 中使用最新的 selenium 版本会出现 LoggingHandler 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43859075/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com