初始化appiumdriver的时候一直报错:
java.lang.NoClassDefFoundError: org/apache/http/auth/Credentials
花了好久来百度、google,也没有找到什么有价值的信息。最后实在是没办法了,分析报错的这段话,猜测难道是因为要导入一个http client的包吗,于是试着添加了maven的httpclient依赖
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.4</version>
</dependency>
果然再次运行的时候报错信息就没有了,不知道这是不是appium本身的bug。