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?
|
feedback
|
|
Try the following code:
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. | |||
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:
It is not important which security level is set for every zone. it is more important that every zone has the same security level. | |||
|
feedback
|