java-client
Language Bindings:
Java language binding for writing Appium Tests, conforms to Mobile JSON Wire & W3C Webdriver Protocol
Pre-condition:
Install .maven or gradle build tool on local.
Set-up:
Add the below jitpack.io repo & java-client dependency to the pom.xml or gradle file
Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.appium</groupId>
<artifactId>java-client</artifactId>
<version>latest commit ID from master branch</version>
</dependency>
Gradle:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.appium:java-client:latest commit id from master branch'
}
Last updated
Was this helpful?