However you should not have tests that demand to be run in a particular order, that's a test automation smell that tells you that you have dependencies between tests.. That often creates a number of other problems ranging from troubleshooting failures, to expensive maintenance, to less usable tests (because you cannot run tests in parallel or isolation)
On Wednesday, June 20, 2012 12:34:49 AM UTC-7, Željko Filipin wrote: > > On Wed, Jun 20, 2012 at 9:09 AM, Gajendra Jain <[email protected]> > wrote: > > I have execute all the scripts in sequence and during the execution if > any script fails, the test execution should not stop in between. > > You should use a test runner, like test/unit, rspec or cucumber. They have > that feature built-in. > > Željko > -- > filipin.eu > -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. [email protected] http://groups.google.com/group/watir-general [email protected]
