I'm using Ranorex Studio evaluation version 3.04 on Windows XP
When I start the script from the IDE it opens the browser (both IE and FF)and loads the page, then it hangs. The mouse becomes unresponsive. I'm not sure but I think the evaluation popup is getting in the way.
Here is my code. It never gets to the ATag statement.
Please help.
public static void TestServiceLinks(string url)
{
Utilities.KillAllBrowsers();
Thread.Sleep(500);
System.Diagnostics.Process.Start("iexplore.exe", url);
WebDocument remHome = "/dom[@domain='na-qa3-rem.joe-blow.com']";
remHome.WaitForDocumentLoaded();
ATag sLink = remHome.FindSingle("./a[@innertext='[Service Links]']");
sLink.Click(new Location());
}