I am trying backing selenium with RemoteWebDriver. Since i have a requirement to load the user-extensions.js file, i could not use WebDriverBackedSelenium for backing selenium. I tried the below code
driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), desired_capabilities=DesiredCapabilities.firefox());
Selenium selenium = new DefaultSelenium("localhost", 4444, "*webdriver", "http://www.google.com");
selenium.start(driver);
But i am getting the error
java.lang.RuntimeException: Could not start Selenium session: Unsure how to process: org.openqa.selenium.remote.RemoteWebDriver@118e0f0f
Exception in thread "main" java.lang.AssertionError: java.lang.RuntimeException: Could not start Selenium session: Unsure how to process: org.openqa.selenium.remote.RemoteWebDriver@118e0f0f expected:<false> but was:<true>
I could see that the webdriver session is created, but the problem lies in the
DefaultSelenium("localhost", 4444, "*webdriver", "http://www.google.com");
Any help is greatly valued. Thanks
DefaultSeleniumis for RC only, it will not accept aWebDriverobject, this is the reason for the error. Explain why you need to loaduser-extensions.js? Why can you not useWebDriverBackedSelenium? – Arran Oct 29 '12 at 9:55