作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Android studio 上运行 Appium,这里有我的项目使用的库
dependencies {
compile 'com.android.support:appcompat-v7:23.1.1'
compile files('libs/testng-6.9.4.jar')
compile files('libs/gson-2.3.1.jar')
compile files('libs/java-client-3.2.0.jar')
compile files('libs/selenium-java-2.47.1.jar')
compile files('libs/selenium-server-standalone-2.42.2.jar')
}
运行代码时出现错误
Error:Gradle: Execution failed for task ':app:transformClassesWithJarMergingForDebug'.> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/thoughtworks/selenium/CommandProcessor.class
最佳答案
尝试包含这些依赖项,如下所示:
compile 'org.testng:testng:6.9.10'
compile 'com.google.code.gson:gson:2.6.2'
compile 'io.appium:java-client:3.4.1'
compile 'org.seleniumhq.selenium:selenium-java:2.53.0'
compile 'org.seleniumhq.selenium:selenium-server:2.53.0'
注意:我已经包含了目前的最新版本。
如果您想使用jar
那么它似乎还没有正确构建。所以尝试做这样的事情:
jar
文件。 (只需将 .jar
扩展名更改为 .zip
jar
使用jar cf some_name.jar -C (path to unzipped folder) .
(注意,命令末尾有一个点)jar
关于java - Appium + Android studio -> 重复条目 : com/thoughtworks/selenium/CommandProcessor. 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36688353/
我正在尝试在 Android studio 上运行 Appium,这里有我的项目使用的库 dependencies { compile 'com.android.support:appcompat-v
我是一名优秀的程序员,十分优秀!