InternetExplorerOptions ClassWebDriver
Class to manage options specific to InternetExplorerDriver
Inheritance Hierarchy

OnlineSystem Object
  OpenQA.Selenium.IE InternetExplorerOptions

Namespace: OpenQA.Selenium.IE
Assembly: WebDriver (in WebDriver.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax

public class InternetExplorerOptions
Examples

InternetExplorerOptions options = new InternetExplorerOptions();
options.IntroduceInstabilityByIgnoringProtectedModeSettings = true;

For use with InternetExplorerDriver:

InternetExplorerDriver driver = new InternetExplorerDriver(options);

For use with RemoteWebDriver:

RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
See Also