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