Framework Mode - Reusable test scripts
Folder Structure
PostmanCollectionRoot/
├── collections/
│ ├── UserManagement.postman_collection.json
│ ├── ProductAPI.postman_collection.json
│ └── SharedScripts.postman_collection.json
├── environments/
│ ├── dev.postman_environment.json
│ ├── staging.postman_environment.json
│ └── prod.postman_environment.json
├── scripts/
│ ├── pre-request/
│ │ ├── authToken.js
│ │ └── setTimestamp.js
│ ├── tests/
│ │ ├── validateStatusCode.js
│ │ └── validateResponseTime.js
│ └── utils/
│ └── commonHelpers.js
└── README.md