Framework Mode - Load testing concepts
Folder Structure for Load Testing Project
load-testing-project/ ├── scripts/ # Load test scripts │ ├── user_scenarios.jmx # Example JMeter script │ └── api_load_test.js # Example k6 script ├── config/ # Configuration files │ ├── environments.json # Environment settings │ └── load_profile.json # Load profiles (users, ramp-up) ├── reports/ # Test execution reports │ └── 2024-06-01_report.html ├── utils/ # Helper scripts and utilities │ └── data_generator.js # Data generation helpers ├── ci/ # CI/CD pipeline scripts │ └── load_test_pipeline.yml └── README.md # Project overview and instructions