I have created a project in that I have multiple test cases. How should choose the sequence of execution of test cases one after another using test explorer option by just opening the applications once at the initial stage( desktop applications setup)
Arrange your test cases in the desired sequence of execution within your test framework.
Regards
Can u give example of giving Bdd test cases in a test framework. Sequential order in a project
Can anyone tell how to organize the BDD test cases in a test framework in a test explorer. sequential order creation. Example
Test cases can be executed in parallel, on multiple robots. So, making then depend one on other test cases being executed before on the same machine is not good design practice.
Our recommendation is to make the test autonomous. If you have a setup or teardown sequence (ex: you need to start an application and it takes some time to do that), you can create an Execution template that handles that (checks if the application is open and if it is not, then starts it) and set it to all the test cases.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.