The question then is ... how do I run the test suite multiple times?
I'm running these tests is an automated way.
Let me try to describe the situation in more detail.
I have a test suite with a login and logout test case and many other test cases in between. I want to call the login test case once, then run all the tests in between, then run the logout test case. After I am done with this, I want to change the credentials, either at the project or suite level and run the whole suite again.
There are test steps that allow you to load from a csv, excel, or some other data source and then run test steps and then repeat the test steps using the data from a new row. This is basically what I want to do except at the suite level. I want to load some data, run the test suite, then load some new data and run the test suite again.
I'm guessing what I would have to do is add a script that runs after the suite ends that changes the data and then goes back to the first step and after so many iterations the script says it is done and no longer goes back to the beginning, but proceeds on. Am I on the right track?
Thanks for the quick response by the way.