I've created a very basic HTML page consisting of a series of links, and written a script to click on each of those links.
The issue that I'm running into is that when I'm running the test on a IE8/Windows 7 machine, Internet Explorer will stop responding and I have to use the task manager to kill the process. The test runs without issue on IE7/WinXP and Firefox/Win7.
Effectively all I'm doing in this test is:
1. Launch a browser:
System.Diagnostics.Process.Start("iexplore.exe", url);
2. Wait for the page to load and then build up a list of links:
IList<ATag> allTags = myTag.FindChildren<ATag>();
3. Click on the first link, wait for it to load, verify 1 piece of information, then close the page.
allTags[x].Click;
But it's in this step 3 after it does the click that IE goes to not responding. The task manager shows the process running consistently with 20% CPU, but the window itself is unresponsive. And since the first link that it's clicking on is just <a href="http://google.com">Google</a> it's not like there's a lot happening. I've tried launching in a new window (target="_blank") but get the same issue
Given that I can click on these links manually (and the configurations noted above), I'm wondering what the issue is with using Ranorex and the combination of IE8/Win7?
Let me know if you need any more information.