Hi,
(Skip to last paragraph for concise question).
I have created a bunch of test cases in a suite to automate testing of a web app through Selenium IDE and it's working great. Now I need to run these through command prompt (with CI or through script). I tried selenese-runner, selenium-html-runner and WebDriver conversion to Java/JUnit. I find selenese-runner to be the best tool in my scenario as it can directly run Selenium IDE generated cases without any changes. Other two options are not preferred.
The problem is that my test cases are a series, where cases will depend on previous one. Now I know that test cases should be independent of each other but I think that's more of a unit test case discussion versus integration test cases that I've developed here. If I make each test case a stand-alone, it would mean one test case per suite for me, and I'll have to include, let's say login functionality in each test case, which is not desired.
Thanks.