Background: I've just upgraded to use Selenium 2 and am using the RemoteWebDriver to drive my tests. The problem is that when the RemoteWebDriver is instantiated it launches a browser (IE8) that behaves differently to the browser that Selenium launches when I use the DefaultSelenium class to drive the tests.
The browser that the RemoteWebDriver launches does not completely load the web page for my test - it displays message 'Downloading picture about:blank...' in the status bar, thus the test cannot proceed.
My question is this: What is the difference between the IE8 browser that DefaultSelenium launches and the one that RemoteWebDriver launches? Can this be configured?
Cheers.