Framework Mode - Data file integration (CSV, JSON)
Folder Structure
postman-project/ ├── collections/ │ └── api-collection.json # Postman collection with requests ├── environments/ │ ├── dev.postman_environment.json │ ├── staging.postman_environment.json │ └── prod.postman_environment.json ├── data/ │ ├── users.csv # CSV data file for data-driven tests │ └── products.json # JSON data file for data-driven tests ├── tests/ │ └── test-scripts.js # Optional external test scripts ├── reports/ │ └── test-report.html # Generated test reports ├── postman.config.json # Custom config for CLI runs └── README.md