Start with playbooks
To execute multiple test cases or feature scenarios, you can create a playbook. A playbook collects test cases and feature scenarios by their tags. You can add tags to test cases through their respective tags field. For Scenarios, you can add use the @tag notation like so:
@calculation
Scenario: Add two numbers
Given the calculation of "89 + 11"
When I press equals
Then the result should be "100"
In the example above, the scenario is tagged with calculation.