Is there any parameterization in Telerik.
I am looking for something like the following, supposed i have tests / scripts called login, DoSomething, DoSomethingElse
I would like to be able to arrange those in a list (execution unit) that looks like that in other paradigms:
Login("Admin", "pwd");
DoSomething();
DoSomethingElse();
Login("Guest", "");
DoSomething();
DoSomethingElse();
I would also like to have those scripts (for example) run as a unit using some other parameters (such as a configuration or browser)
MyList(params[ ]);
Much appreciated