Import appium-seetest-extension.jar?

I understand there are some new capabilities contained in:

  appium-seetest-extension.jar

What gradle dependency do I use to import this ?

thanks

Hi Walter

We’ll publish this on our maven repository by the end of the week

I’ll keep you posted

Hi Watler

The JAR is now available under our repositories

here is the gradle code snippet

    maven {         url "http://repo.experitest.com:8010/Maven2/" }
    maven {         url "https://cloud.experitest.com/repo" }
}

dependencies {
    compile 'com.experitest:appium-seetest-extension:11.4'
}

Thanks Tom…I will added this to my code. Look forward to trying out some of the additional commands.

Please let me know the latest jar file to add in Gradle dependencies for appium studio community version 12.4.5043.

You can use this gradle dependency

compile group: ‘com.experitest’, name: ‘appium-seetest-extension’, version: ‘+’

and this as repository

repositories {
mavenCentral()
maven {
url “https://cloud.experitest.com/repo/
}
}