Updating Appium Studio from 10.8 to 10.9 and Higher
Please note that this tool is classified as a Legacy tool. We recommend transitioning to our updated solutions to maintain optimal performance and security in your workflows. For more information on this matter, please reach out to technical support .
If you updated your Appium studio to a version higher than 10.8, you have to apply some changes in your test scripts.
Appium Studio 10.8 made use of custom iOS and Android drivers when initializing the Appium driver. Appium Studio 10.9 uses the native Appium drivers that are part of the Appium open source client.
When initializing the driver, use the native Appium driver type instead of SeeTest's driver:
-
Change SeeTestAndroidDriver/SeeTestIOSDriver to AndroidDriver/IOSDriver.
-
Change the port from 8889 to 4723.
AndroidDriver driver = null;
.....
.....
driver = new AndroidDriver<>(new URL("http://127.0.0.1:4723"), dc);