Reputation: 14906
I cannot figure out how to setup selendroid in Visual Studio and I cannot find any documentation to help me out.
I am trying to do something like:
IWebDriver driver = new SelendroidDriver();
I understand I need the Android SDk installed but how do I actually call the code to start the browsing session in my C# code? I cannot find any Visual Studio nuget package for selendroid or any DLL to add.
Upvotes: 2
Views: 2453
Reputation: 14906
The step I was missing is that there is no library for selendroid, you just use the remoteWebDriver
Upvotes: 1
Reputation: 618
When looking for information on this I came across this post describing unit tests with C# and Selendroid. YMMV.
http://pritamsen.wordpress.com/2014/04/11/selendroid-c-code-with-nunit-runner-to-run-on-device/
Upvotes: 1