在Internet Explorer中一起使用Selenium和LeanFT

时间:2016-12-09 19:52:30

标签: c# selenium leanft

我已经看到你可以将Selenium和LeanFT与Chrome和Firefox一起使用。有谁知道如何使用IE?

我在VS 2015中使用C#

1 个答案:

答案 0 :(得分: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();