Reduce number of steps in end to end test case for automation
Hello all,
We have our regression test cases written in an end to end format and there are around 30 steps in the test scripts.
Our Selenium automation team is finding it difficult to code for all the 30 steps. Please advise if there is a way to condense the end to end functionality to make it simple.
I tried multiple test scripts to the test case, but then test case execution record reads only the first test script.
Thanks in advance.
|
One answer
Hi,
I would suggest to make use of Test Suite for this scenario. You can link each test script to a separate test case and then add all the relevant test case in a single test suite. Then create a Test Suite Execution Record and execute it. This will run your test script one after other. You also have an option to run all the test scripts in parallel.
Hope this will solve your problem.
Thanks,
Vijay Patil
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
Thanks a lot for the response, appreciate it