ContributionsMost RecentMost LikesSolutionsRe: HISUtils["StopWatch"] Well it looks like it worked fine once it was logged, so it's just a matter of the Indicator not updating. Now I'm thinking there is a limit to how many strings you can push on to the Indicator stack. HISUtils["StopWatch"] Does HISUtils["StopWatch"] have a maximum value? I'm currently running a test that's about 15 hours into a 17ish hour test. I'm using a while loop to update the Indicator with how long the test has been running. I won't be able to investigate further until the test is finished, but it seems that the StopWatch stopped updating at 08:27:59 even though the test and TextExecute seem to still be running fine. Re: Janus GridEX v.3This morning it inexplicably started working like it should. I have no idea why. I don't recall doing anything different or installing/uninstalling anything new. I have rebooted a few times, so maybe that's it.Re: Janus GridEX v.3 Test Complete 8.0.290.7 TestExecute 8.0.290.11 Janus GridEx 3.5.0.59 I'd also like to reiterate that it DOES work on the machine that has TestExecute, but NOT on the machine that uses TestComplete. So it should not be a control problem. Re: Janus GridEX v.3 More information: It seems to work on TestExecute running on a remote session, but not on my local machine using TestComplete. Janus GridEX v.3 I have a grid object: Sys["Process"]("foobar")["WinFormsObject"]("MainForm")["WinFormsObject"]("MdiClient", "")["WinFormsObject"]("BestPrice")["WinFormsObject"]("Gridex1") I can get to the ["DataSource"] child object, but any descendant deeper than that and I get an "Object required" exception when I run the script. So, foo = Sys["Process"]("foobar")["WinFormsObject"]("MainForm")["WinFormsObject"]("MdiClient", "")["WinFormsObject"]("BestPrice")["WinFormsObject"]("Gridex1")["DataSource"]; works, but if I add bar = foo["Rows"]["Count"]; "bar" returns the exception "Object required" when I try to store it to a variable, even though I can get to it using the object browser. Re: Test Item Parameter dialog box Ah. That did it. Thanks for the help. I figured it should let me open the dialog, and then just give me some type of error later. I was wrong. Test Item Parameter dialog box Clicking on the ellipse for the Test Item Parameter dialog box in the project workspace does nothing (v8). Help? Re: Another WaitWindow/Exists thread Thanks for the replies. WaitAliasChild didn't work for me. Probably because I was messing something up. :) Here's what did work for me: var x; x = Aliases["Blah32"]["WaitWindow"]("#32770", "Blah", 1, 1000); if (!x["Exists"]) { //Do something } Another WaitWindow/Exists thread As far as I know from searching around here, the following should work: var x; x = Aliases["BLAH32"]["dlgBlah"]["WaitWindow"]("Static", "blah blah blah.", 2, 1000); if (!x["Exists"]) { //Do whatever } The line with WaitWindow always gives a "the object does not exist" error. It also seems to wait longer than 1000 before it fails.