Reputation: 1143
I have been looking into selenium and a hosted service ghostscript for behavioral driven testing framework for our complex webapp.
I want to break this task into several small pieces of test suits which checks certain smaller feature independently. Then I want to create a bigger flow using all these smaller units. This will give me few advantages
Are there any tools to achieve this and make this task easy without writing everything from beginning, So that I can focus more on create smaller test units and creating flow rather than investing and setting up such infra.
Upvotes: 0
Views: 273
Reputation: 123
You can use Cucumber here. In one of my project we had many individuals modules developed, which were later reused in multiple solutions (combination of multiple modules as per requirments). So we achieved it with BDD framework using Cucumber to develop automation scripts for each individual’s modules and reused the same script written for individual solutions which have that module.
Upvotes: 1