ContributionsMost RecentMost LikesSolutionsRe: Why does it work in TestComplete but not TestExecute LOL Re: Why does it work in TestComplete but not TestExecute Marsha_R, Even though your comment makes no sense :-), it worked! Thank you! Re: Why does it work in TestComplete but not TestExecute This is interesting. We currently have 50 ms for event delays. What would you suggest? I'm going to bump it up to 1000 for the meantime. Thanks! Why does it work in TestComplete but not TestExecute I have some code in Testcomplete that works fine on my machine. But when I deploy to any test machine it sometimes works. Meaning. sometimes the code works, sometimes it does not. The code at hand is this: browser = Sys.WaitBrowser("*",10000); page = brower.FindChild("ObjectType", "Page", 1000); It always works in TestComplete, but sometime it does not work when I deploy to TestExecute. I would say that fails in TestExecute 75% of the time. Thanks SolvedRe: Sys.WaitBrowser does not work I forgot to mention. This works fine in TestComplete, but does not work in Test Execute! thanks Sys.WaitBrowser does not work I have code that randomly works. browser = Sys.WaitBrowser("*",10000); page = brower.FindChild("ObjectType", "Page", 1000); sometimes the "FindChild" returns a null. I can never count on this, sometimes it works, sometimes it does not. Thanks