Hi Tom,
Can you please let me know how do i execute my C# test in 10.9 version of appium studio. I have my own project created with plain appium server using native C# client,but how do i execute those scripts using appium studio.
Hi Tom,
Can you please let me know how do i execute my C# test in 10.9 version of appium studio. I have my own project created with plain appium server using native C# client,but how do i execute those scripts using appium studio.
Hi Rock,
You need to make sure that Appium Studio is running. Shut down Appium Server in case it is running and make sure that the Appium Studio agent is running on port 4273: in Appium Studio, File → Agent Properties → Set to 4723 → Click on play:

Then in your IDE, make sure to properly configure your driver:
AndroidDriver<AndroidElement> driver
driver = new AndroidDriver<AndroidElement>(new Uri("http://127.0.0.1:4723/wd/hub"), capabilities)
The rest should stay the same. Let us know if you come across any issues running your tests.