Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I assume you've done this: seleniumhq.org/docs/03_webdriver.html#internet-explorer-driver? – marktucks May 11 '11 at 10:55
I include the selenium-server & selenium-remote-control artifacts as dependencies in the pom.xml file. This brings in all of the jars I believe... although I dont have webdriver-all.jar in the dependency:tree. – RJC May 11 '11 at 13:18

2 Answers

You may be running into Protected Mode issues in IE. For IE using the Selenium WebDriver API (that's using RemoteWebDriver), you need to configure the browser properly first. The correct settings for IE are detailed in the Selenium project wiki.

Also note that if you're running the tests on the same machine as IE, you can skip using the RemoteWebDriver altogether, and simply create an instance of the InternetExplorerDriver.

share|improve this answer

I have the same problem. Technically, I think the origin must be somewhere in Protected Mode

share|improve this answer
It was a while ago now, but I don't think I found the solution to this. Sorry. – RJC Apr 11 at 10:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.