Forum Discussion
AlexanderM
Staff
16 years agoHello Michael,
Since the TestedApps item cannot be shared among projects, your solution is quite acceptable. Probably, you prefer not to change the TestedApps collection while running tests. Another solution is to run necessary applications directly, without using the TestedApps item:
However, this solution doesn't use advanced run options such as Run Modes.
As for the ability to share the TestedApps collection among projects of the same project suite, we have this suggestion in our DB, and your post has increased its rating. Thank you.
Since the TestedApps item cannot be shared among projects, your solution is quite acceptable. Probably, you prefer not to change the TestedApps collection while running tests. Another solution is to run necessary applications directly, without using the TestedApps item:
var path = ProjectSuite.Variables.VariableByName(<application path>);
var shell = new ActiveXObject("WScript.Shell");
shell.Run(path);
However, this solution doesn't use advanced run options such as Run Modes.
As for the ability to share the TestedApps collection among projects of the same project suite, we have this suggestion in our DB, and your post has increased its rating. Thank you.