Hi,
Is there a way to execute tests present inside a test suite in a certain order?
while using gird, for certain tests we don’t want the tests to be picked up by different machines and get executed in parallel.
Any way we can mark a suite/tests to run in sequential order instead of executing in parallel.
Thanks!
You can rename files, folders and test names to be prefixed with numbers and _.
For example:
Test Number One
→ 01_Test Number One
Test Suite One
→ 01_Test Suite One
Test Suite One/Test Number Two.robot
→ 01_Test Suite One/02_Test Number Two.robot
This is a feature since the beginning of Robot Framework, and if you use RIDE, the numbers are omitted from the view of test suites.
1 Like
Thanks @HelioGuilherme66
will try this.
1 Like