There is now the ability to specify a single test script to run
when invoking the ant build file. (There was already the ability
to invoke a single unit test).
ant -DtestClass=com.canoo.webtest.extension.ScriptStepTest
runs a single unit test
ant -DtestScript=scriptTest
runs just the scriptTest.xml tests in the selftests/tests directory
rather than all of the tests listed in the TestSuite.xml file.
The test script doesn't need to be one of those listed in TestSuite.xml
but it does need to be in that directory. The generated report will
contain the results for just the one test script too.
Cheers, Paul.