Framework Mode - Variable scope and precedence
Folder Structure of a Postman Test Project
PostmanProject/ ├── collections/ │ └── MyAPI.postman_collection.json ├── environments/ │ ├── Development.postman_environment.json │ ├── Staging.postman_environment.json │ └── Production.postman_environment.json ├── globals/ │ └── globals.postman_globals.json ├── scripts/ │ ├── pre-request-scripts/ │ │ └── authSetup.js │ └── test-scripts/ │ └── responseValidation.js ├── data/ │ └── testData.json └── README.md