Using Selenium webdriver for Internet Explorer. Tests won't run

前端 未结 2 1612
孤街浪徒
孤街浪徒 2021-01-16 11:18

I\'m currently expanding my tests to cover Internet Explorer using Selenium webdriver for IE (IEDriverServer.exe).

My issue is that when I execute my tests using th

2条回答
  •  鱼传尺愫
    2021-01-16 12:04

    Internet explorer is very slow when you ran your test in fire fox its worked fine because firefox search is very fast add proper waits and increase time out to locate objects increase that time to 2 min = 120 sec

    C# example is

    InternetExplorerDriver driver = new InternetExplorerDriver(@"c:\path", options, TimeSpan.FromMinutes(2));
    

提交回复
热议问题