Forum Discussion
balinta01
13 years agoOccasional Contributor
Hi,
Even after elimininating the infinite loop, I still could not get it to work. The script is very simple, however the synch point does not seem to be working properly. I have the two functions on different slave computers in the same job defining the sync point in both computer (copying it through the master computer). If you look at the very first post, the NetworkSuite.Synchronize("SPC"); line was before the while loop, but it didnt move on after this line, just wait for tasks being synchronized. The help says after all the tasks (in this example my two functions) gives out the Synchronize instruction then the whole process is supposed to go on. I still dont get why thi simple example is not working.
Even after elimininating the infinite loop, I still could not get it to work. The script is very simple, however the synch point does not seem to be working properly. I have the two functions on different slave computers in the same job defining the sync point in both computer (copying it through the master computer). If you look at the very first post, the NetworkSuite.Synchronize("SPC"); line was before the while loop, but it didnt move on after this line, just wait for tasks being synchronized. The help says after all the tasks (in this example my two functions) gives out the Synchronize instruction then the whole process is supposed to go on. I still dont get why thi simple example is not working.
function Calc12onSlaveA()
{
TestedApps.calc.Run(1, true);
NetworkSuite.Synchronize("SPC");
Aliases.calc.wndCalculator.btn1.ClickButton();
Aliases.calc.wndCalculator.btn2.ClickButton();
Delay(2000);
}
function Calc89onSlaveB()
{
TestedApps.calc.Run(1, true);
NetworkSuite.Synchronize("SPC");
Aliases.calc.wndCalculator.btn8.ClickButton();
Aliases.calc.wndCalculator.btn9.ClickButton();
Delay(2000);
}
Related Content
- 5 years ago
- 5 years ago
- 10 months ago
Recent Discussions
- 8 hours ago