2016-12-09 47 views
0

我看到您可以將Selenium和LeanFT與Chrome和Firefox一起使用。有誰知道如何使用IE做到這一點?在Internet Explorer中一起使用Selenium和LeanFT

我使用C#在VS 2015年

+0

反覆試錯把我帶到這個解決方案: –

+0

VAR的選擇=新InternetExplorerOptions {IgnoreZoomLevel =真}; _driverIE =新InternetExplorerDriver(選項); _browser = BrowserFactory.Attach(new BrowserDescription { Type = BrowserType.InternetExplorer, Title =「WebDriver」 }); _browser.Navigate(HomeUrl); _browser.Sync(); –

回答

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(); 
相關問題