Forum Discussion
Julia_K
Alumni
14 years agoHello Angelo Diego,
If you have a script routine that updates your projects on remote hosts and you want to run it before running the network suite, you can create a common script routine that will call your UpdateHostProcess routine and then run the network suite with the NetworkSuite.Run method. For example:
function Common()
{
UpdateHostProcess();
NetworkSuite.Run(True);
}
Then you can run the Common routine from the command line:
TestComplete.exe "C:\MasterTest\MasterTests.mds" /r /p:MasterTests /u:Main /rt:Common
Please let us know whether this information helps.
Thank you.