A command-line tool and Python library to convert web browser sessions (HAR files) into Locust load test scenarios ("locustfiles").
Use it to replay HAR files (storing recordings of interactions with your website) in load tests with Locust.
Install from PyPI:
pip install har-transformer
Install Locust to run your locustfiles:
pip install locust
Example HAR files are included in the examples/
directory, try them
out.
transformer my_har_files_directory/ >locustfile.py
import transformer
with open("locustfile.py", "w") as f:
transformer.dump(f, ["my_har_files_directory/"])
Take a look at our documentation for more details, including how to generate HAR files, customize your scenarios, use or write plugins, etc.
- Serhii Cherniavskyi — @scherniavsky
- Thibaut Le Page — @thilp
- Brian Maher — @bmaher
- Oliwia Zaremba — @tortila
See also the list of contributors to this project.
This project is licensed under the MIT license — see the LICENSE.md file for details.