hridayesh
hridayesh

Reputation: 1143

Modular automation testing service/framework for web app

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

  1. I can create different flow reusing smaller units. This will also help me verifying smaller units with different entry/exit points.
  2. If there is any change in some part of app, I do not have to change it in every flow its being used.
  3. All the flow can be visualized easily.

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

Answers (1)

Priya P
Priya P

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

Related Questions