Wraps IEDriver.
This class can track lifecycle of the driver. Needed for FastMode.
상속: OpenQA.Selenium.IE.InternetExplorerDriver, IWebDriverWrapper
        public IWebDriver CreateNewInstance()
        {
            InternetExplorerOptions options = new InternetExplorerOptions {
                BrowserCommandLineArguments = "-private"
            };
            var driver = new InternetExplorerDriverWrapper(options);

            driver.SetDefaultTimeouts();
            return(driver);
        }
 public IWebDriver CreateNewInstance()
 {
     InternetExplorerOptions options = new InternetExplorerOptions
     {
         BrowserCommandLineArguments = "-private",
         //IgnoreZoomLevel =  false,
         //EnableNativeEvents = true,
         //RequireWindowFocus = true,
     };
     var driver = new InternetExplorerDriverWrapper(options);
     driver.SetDefaultTimeouts();
     return driver;
 }