简体   繁体   中英

Using Selenium and LeanFT together in Internet Explorer

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

        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();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM