I am using webDriver version 18,and I am trying to run my testCases on IE version 8 as I have Window XP.But I am facing this problem:- ERROR: Unexpected error launching Internet Explorer. Protected Mode must be set to the same value (enabled or disabled) for all zones. (WARNING: The server did not provide any stacktrace information).How to resolve it,if anybody faced this type of problem?

link|improve this question

0% accept rate
feedback

2 Answers

Try the following code:

DesiredCapabilities ieCapabilities = DesiredCapabilities.internetExplorer();
ieCapabilities.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);
WebDriver driver = new InternetExplorerDriver(ieCapabilities);

If that doesn't work you will need a new user created by your IT people that does not have protected mode enabled (if you're unable to modify that value in the Options). I faced the same issue as you, and the above fixed it. Our IT policy is likely a bit more lenient.

Here are a few resources: Same issue with .NET, same issue with Watir, Configuration Settings.

link|improve this answer
Hi Scott,Actually I had already made these changes.Today I had resolved my problem by upgrading the version of Selenium to 2.18 from 2.16. – katie Jan 31 at 8:18
feedback

This is a security option in IE. One solution is "INTRODUCE_FLAKINESS_BY_IGNORRING_SECURITY_DOMAINS" to set true in DesiredCapabilities. The other solution is setting the right options in IE:

  • Go to InternetOptions in IE
  • Click on the security tab
  • There you can see the 4 zones

It is not important which security level is set for every zone. it is more important that every zone has the same security level.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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