0

I have seen that you can use Selenium and LeanFT together with Chrome and Firefox. Does anyone know how to do this using IE?

I am using C# in VS 2015

Motti
  • 110,860
  • 49
  • 189
  • 262
Paul Tracy
  • 33
  • 4
  • Repeated trial and error brought me to this solution: – Paul Tracy Dec 15 '16 at 15:00
  • var options = new InternetExplorerOptions { IgnoreZoomLevel = true }; _driverIE = new InternetExplorerDriver(options); _browser = BrowserFactory.Attach(new BrowserDescription { Type = BrowserType.InternetExplorer, Title = "WebDriver" }); _browser.Navigate(HomeUrl); _browser.Sync(); – Paul Tracy Dec 15 '16 at 15:01

1 Answers1

0
        var options = new InternetExplorerOptions { IgnoreZoomLevel = true ;
        _driverIE = new InternetExplorerDriver(options);

        _browser = BrowserFactory.Attach(new BrowserDescription
        {
            Type = BrowserType.InternetExplorer,
            Title = "WebDriver"
        });
        _browser.Navigate(HomeUrl);
        _browser.Sync();
Paul Tracy
  • 33
  • 4