How To Use Appium With Android Studio?
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
Solution 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.
Post a Comment for "How To Use Appium With Android Studio?"