0

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

我在 VS 2015 中使用 C#

4

1 回答 1

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();
于 2016-12-15T15:04:43.887 回答