Open mbilbiesi opened 4 years ago
Works fine for me / I and my team used it regularly together with stf_ios_support at TMobile.
The key is you have to pass a special option to re-use an existing local port / already running WDA since otherwise Appium tries to start its own copy of WDA.
Unfortunately, all my tries are not working; i tried to apply all possible capabilities related to re-use the existing WDA session under https://github.com/appium/appium-xcuitest-driver, but i am still struggling to avoid closing the session which is created by stf-ios-support !
Do you still remember what was this key we need to pass to re-use local port ? :)
Works fine for me / I and my team used it regularly together with stf_ios_support at TMobile.
The key is you have to pass a special option to re-use an existing local port / already running WDA since otherwise Appium tries to start its own copy of WDA.
which key do you mean??
Unfortunately, all my tries are not working; i tried to apply all possible capabilities related to re-use the existing WDA session under https://github.com/appium/appium-xcuitest-driver, but i am still struggling to avoid closing the session which is created by stf-ios-support !
Do you still remember what was this key we need to pass to re-use local port ? :)
use "webDriverAgentUrl"
Hi @mbilbiesi have you sort out how to integrate appium automation on ios device using stf_ios_support, if so, kindly help me out and share your experience on it. Will be very much helpful if you share any repo that has that implementation. Thanks
Hi again !
I am trying to run tests on appium server on the mobiles which are already used by
stf_ios_support
, I am facing issue when Appium is trying to create a driver; it complains about the ports which are already reserved bystf_ios_support
currently i am having two devices connected to stf and reserving ports 8100 and 8101, I tried to change maintain the ports from test side by giving another ports using the capability
wdaLocalPort
to something which is not used by ios_stf (i.e 8102, 8103) ; then I ran the tests and it worked; but the devices are not controllable anymore after this run; somehow the wda is killed !Is there any guidance in how to use
ios_stf_support
beside Appium ?