Framework Mode - Performance testing basics
Folder Structure for Performance Testing Project
performance-testing-project/ ├── scripts/ # Load and stress test scripts │ ├── login_test.jmx # Example JMeter script │ ├── api_load_test.js # Example k6 script │ └── user_scenario.js # Custom user flow scripts ├── results/ # Test run results and reports │ ├── 2024-06-01_report.html │ └── 2024-06-01_metrics.json ├── config/ # Configuration files for environments and test parameters │ ├── environments.yaml │ └── test_settings.json ├── utils/ # Helper scripts for data generation, parsing results │ └── data_generator.py ├── ci/ # CI/CD pipeline scripts for performance tests │ └── run_performance_tests.yml └── README.md # Project overview and instructions