I am struggling to get a RemoteWebDriver
to work.
I wondered whether I needed Selenium RC
, so I installed that with Nuget
and noticed that DefaultSelenium
takes a path to the browser as a parameter.
I am getting a bit overwhelmed with all the different libraries available for Selenium
- but what I want is to be able to run against a host of browsers (android/chrome/firefox, etc) without those browsers necessarily existing on the machine that Selenium
is running on.
Is that possible? And if so, which Selenium
libraries would I need (I am using VS2012
and C#
) to acheive this?
I was trying to achieve this with RemoteWebDriver with a range of different DesiredCapabilites, rather than using ChromeDriver, FirefoxDriver, etc.