Cannot Instantiate AppiumDriver , IOS Automation , C# bindings

Hi

Thanks for the reply.

Actually with new version of Appium dot net driver. Appiumdriver class is now abstract
so we have separate Android and IOS drivers.

it is now:

just add the required namespace and instantiate using below:

public static AppiumDriver AdriverLocal;
AdriverLocal = new IOSDriver(new Uri(“http://10.XXX.XX.XXX:4723/wd/hub”), DCLocal);

I guess “new Uri()” instead of new URL(" ") or new Url() and url should be starts from 0.0.0.0:4723 (or) 127.0.0.1:4723 . (Change according to yours)

Hope will get resolved.

Thanks,
Bhaskar.