Forum Discussion
AlexKaras
Champion Level 2
7 years agoHi,
.WaitXXX() methods complimentary to those without Wait prefix are provided by TestComplete exactly for this. (See documentation for more info.)
For example:
var p = Sys.WaitProcess('YourTestedProcess', 500);
if (!p.Exists)
p = TestedAllpications.<YourTestedApp>.Run();
// use p here