How to use Appium with Android Studio?

江枫思渺然 提交于 2020-01-06 13:07:23

问题


I'm trying to use Appium with Android Studio. My search on google doesn't helped much out! So what do I need in the gradle file and how to run the tests?

Thanks


回答1:


Your gradle file should be like this:

apply plugin: 'java'

repositories {
    mavenCentral()
}

dependencies {
    Mention all your jar here
}

From command line you can run your gradle(gradle assemble) to create the jar of your test and then you can run that jar.



来源:https://stackoverflow.com/questions/28969685/how-to-use-appium-with-android-studio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!