Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There was a short <a href="https://web.archive.org/web/20151018011652/https://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions#Q:_The_does_not_work_well_on_Vista._How_do_I_get_it_to_work_as_e" rel="nofollow">FAQ entry</a> on the project website (copied circa Selenium 2.9):</p> <blockquote> <p>The InternetExplorerDriver requires that all security domains are set to the same value (either trusted or untrusted) If you're not in a position to modify the security domains, then you can override the check like this:</p> <pre><code>DesiredCapabilities capabilities = DesiredCapabilities.internetExplorer(); capabilities.set(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true); WebDriver driver = new InternetExplorerDriver(capabilities); </code></pre> <p>As can be told by the name of the constant, this may introduce flakiness in your tests. If all sites are in the same protection domain, you should be okay.</p> </blockquote> <p>The parallel C# InvalidOperationException message: </p> <blockquote> <p>Unexpected error launching Internet Explorer. Protected Mode must be set to the same value (enabled or disabled) for all zones. (NoSuchDriver)</p> </blockquote> <p>and the C# instead of adjusting IE settings (best guess as of Feb 2016):</p> <pre><code>var ieOptions = new OpenQA.Selenium.IE.InternetExplorerOptions { IntroduceInstabilityByIgnoringProtectedModeSettings = true }; using (var driver = new InternetExplorerDriver(ieOptions)) { </code></pre> <p>This was all part of <a href="https://web.archive.org/web/20140522001425/http://code.google.com/p/selenium/issues/detail?id=1795" rel="nofollow">issue 1795</a> on the Selenium issue tracker.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload