Forum Discussion
Radford
7 years agoSuper Contributor
I would be looking at how you are structuring your tests.
You say that all of your steps are in a single test case, but you only want to run the first 22. While I don't know the details of your tests but if you regularly wanting to run just the first 22 I would consider splitting them into a separate appropriately named test case, so when you just need the first 22, just run the test case. You can then always run all of them by running the parent test suite.
If on the other hand it is just a once only (or very rare) requirement to run just the first 22 then the disable steps method mentioned by richie is ideal.