我已经看到,您可以将Selenium和LeanFT与Chrome和Firefox一起使用。有谁知道如何使用IE来做到这一点吗?
我在VS 2015中使用C#
发布于 2016-12-15 23:04:44
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();https://stackoverflow.com/questions/41067852
复制相似问题