This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
GoToUrl Does Not Wait Till Page Loads in IE11 #7490
Open
Description
Originally reported on Google Code with ID 7490
Hi,
I have a problem running tests in IE11 with web driver.
Steps to reproduce the problem:
1. Instantiate InternetExplorerDriver with default constructor
2. do driver.Navigate().GoToUrl("http://google.com")
3. do driver.Navigate().GoToUrl("http://wikipedia.org")
Actual result: test immediately completes without waiting till Google page is opened.
There is no attempt to open Wikipedia page.
Expected result: Google page is opened then wikipedia page is opened and then test
done.
Sample of test code:
[TestMethod]
public void Open()
{
var driver = new InternetExplorerDriver();
driver.Navigate().GoToUrl("http://google.com");
driver.Navigate().GoToUrl("http://wikipedia.org");
}
If you can't reproduce the issue with the provided steps, let me know what info I can
provide from my environment, so you can understand what is wrong.
Selenium version: 2.42
OS: Windows 8.1
Browser: Internet Explorer
Browser version: 11.0.9600.17107
I made registry tweak as suggested to IE11.
Regards,
Dmitry
Reported by Dmitry.Pyrojoke.Mikhaylov
on 2014-06-16 13:42:38