Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abi-sheak/robotframework-testrepeater
A listener to repeat testscases for given iterations.
https://github.com/abi-sheak/robotframework-testrepeater
automated-testing listener robotframework robotframework-library test-repeat
Last synced: about 1 month ago
JSON representation
A listener to repeat testscases for given iterations.
- Host: GitHub
- URL: https://github.com/abi-sheak/robotframework-testrepeater
- Owner: abi-sheak
- License: apache-2.0
- Created: 2024-04-30T05:19:39.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T10:49:54.000Z (2 months ago)
- Last Synced: 2024-09-27T10:41:23.937Z (about 2 months ago)
- Topics: automated-testing, listener, robotframework, robotframework-library, test-repeat
- Language: Python
- Homepage: https://pypi.org/project/robotframework-testrepeater/
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Robot Framework Test Repeater
**Test Repeater** is a listener plugin for Robot Framework that allows you to repeat each test case in a suite a specified number of times.
This can be useful for scenarios where you want to execute the same test cases multiple times with different inputs or configurations.## Installation
Ensure you have Python and Robot Framework installed.
```
pip install robotframework-testrepeater
```## Usage
You can use Test Repeater by specifying it as a listener when running your Robot Framework tests. Here's how you can do it:
```
robot --listener TestRepeater:
```Replace `` with the number of times you want each test case to be repeated, and `` with the path to your Robot Framework test suite.
For example:
```
robot --listener TestRepeater:2 example/example.robot
```This command will repeat each test case in `example/example.robot` 2 times.
## License
Test Repeater is licensed under the Apache License, Version 2.0. See the [LICENSE](LICENSE) file for details.
## Author
Test Repeater is maintained by reharish and abi-sheak.