Forum Discussion

ex's avatar
ex
Occasional Contributor
9 years ago
Solved

Execute a group of tests in Network Suite in series

In a Master Network Suite, I can have a task that can run one task on a remote computer. I am unable to assign multiple tasks to the same Job, as they would try to executed on the same Slave machine ...
  • ex's avatar
    ex
    9 years ago

    I did something along those lines, 

     

    I made a helper called Run() 

     

    function Run(){
        for (var i = 0; i < arguments.length; i++)
        { 
            Log.AppendFolder("Folder 1");
            arguments[i]();
            Log.PopLogFolder();
        }
    }

     

    and I run the tests by calling Run(test1,test2,test3) ... 

     

    Thank you for the help!