I want to integrate existing Appium(Java, TestNG, Maven) project with TestProject, how can i do it? I have found a way for Selenium(Java, TestNg)here: https://blog.testproject.io/2020/07/14/announcing-testproject-new-opensdk/ but I didn’t found any way for Appium project.
For example have a project like below, So where I have to put the the access token or other necessary things?
public class DemoTest{
WebDriver driver;
@BeforeTest
public void setUpForAndroid() throws Exception{
DesiredCapabilities dc = new DesiredCapabilities();
dc.setCapability("platformName", "android");
dc.setCapability("deviceName", "OnePlusOne");
dc.setCapability("noReset", "true");
dc.setCapability("appPackage", "com.SiemensAG.IQView");
dc.setCapability("appActivity", "com.unity3d.player.UnityPlayerActivity");
driver = new AndroidDriver(new URL("http://0.0.0.0:4723/wd/hub"), dc);
}
@Test
public void iQView() throws Exception {
System.out.println("Script started");
}
@AfterTest
public void endTest(){
System.out.println("Script completed");
}
Any kind of help appreciated.