Hi Support,
Please find some details regarding that problem.
I have created new project with just 2 steps. First step is
to compile the sample using MSBuild.exe and the next step is to run the
compiled sample output.
I am using below code to run the Sample in scripts.
Below one is not working. Since once the first step executed
the next step also started without waiting for the first step to complete.
TestedApps["MSBuild_40"]["Run"]();
TestedApps["TA_4420"]["Run"]();
The below code is working fine, since we have given the time
delay.
TestedApps["MSBuild_40"]["Run"]();
BuiltIn["Delay"](3000);
TestedApps["TA_4420"]["Run"]();
My requirement is we need to achieve this without the
BuiltIn delay. Please help me to solve this problem.
Regards,
Vinoth M