本文介绍了线程"main"中的异常java.lang.NoClassDefFoundError:okhttp3/ConnectionPool与Selenium和Java的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个简单的硒测试代码:
i have a simple Selenium Test Code:
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "/home/chromedriver");
WebDriver driver= new ChromeDriver();
driver.get("http://google.com");
}
我得到这个错误:
Exception in thread "main" java.lang.NoClassDefFoundError: okhttp3/ConnectionPool | Caused by: java.lang.ClassNotFoundException: okhttp3.ConnectionPool
我认为jar和Dependency都可以,但是我仍然遇到此错误
I think the jars and Dependency are ok but i still get this Error
推荐答案
请检查您项目库中的jar文件:
please check of this jars files in your project libraries:
okhttp-3.10.0.jar
& okio1.14.1.jar
okhttp-3.10.0.jar
& okio1.14.1.jar
可以使用此jar文件解决您的问题:
may be solve using this jar files your problem :
这篇关于线程"main"中的异常java.lang.NoClassDefFoundError:okhttp3/ConnectionPool与Selenium和Java的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!