Keep one single repository for manual and automated scripts Not all scripts should be automated and for different reasons: maturity of the feature to be developed, complexity of the testing environment… It’s a matter of return on investment. So teams have to manage both manual scripts and automated ones. A scenario can be first executed manually as part of the current sprint and then be automated and added to the regression suite. The key thing here is to keep one single place for all your scenarios. And the same test, that represents a specification of your application can be executed in different ways. When you change a step it impacts not only a manual test run but also the automated one With Hiptest the same scenario is used to generate script for manual test run as well as script for any test automation framework. So they are always in sync. You have one single source of truth. ENJOY BDD!
|