Forum Discussion
amcnamara
11 years agoContributor
Yes. I never used quotes. I just put those there to show that I knew I needed to change "tested app" to the name of my actual tested app.
msaunders
11 years agoContributor
This is my function to get my program to change the command line args per run of the software
function CommandLine(neededParams)
{
var commandLineParams = neededParams;
TestedApps.<appName>.Params.SimpleParams.CommandLineParameters = commandLineParams;
}
At the end of each run i call this also
function ClearParams()
{
neededParams = "";
Log.Message("cleared parameters by setting to: " + neededParams);
CommandLine(neededParams);
}
May not be the best way to do it but it works for my application