📄️ Skipping Scenarios
The process of skipping allows bypassing certain scenarios without the need to delete or comment out the code. This proves incredibly beneficial in several situations:
📄️ Parameterized Scenarios
To create a parameterized scenario in Vedro, you'll need to use the @vedro.params decorator. This decorator allows you to pass different parameters to the scenario, which will then be executed multiple times with the provided parameters.
📄️ Scenario Ordering
The order in which scenarios are executed can significantly impact the testing process. Vedro provides two distinct approaches for scenario ordering: Stable Order and Random Order.
📄️ Fail Fast
Understanding the Fail Fast Principle
📄️ Tags
Software projects often grow like snowballs, accumulating complexity as they evolve. As new features are added, the number of accompanying tests also increases. What starts as a simple suite of tests can quickly turn into an unmanageable mountain of test cases, complicating both maintenance and test discovery.
📄️ Scenario Scope
What is Scope?
📄️ Parallel Execution
Please note that this documentation is currently under finalization and improvement
📄️ Anti-Flaky
What are Flaky Tests?