Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.