Hello hello,
I know it has been a while, but I think I am having the same issue as Silas.
Just like Silas, I have a (retrieve token) request I would like to execute before each request by ID or name. I know of 2 possibilities as of now, which are:
- Building the request with JSON in the pre-request script as per this docs page.
- Using the
setNextRequest
function as per this docs page.
The problem I am having with these solutions however are as follows.
- I would like to avoid having to build an entire request in JSON and sending it in a script for ease of use.
Creating a request that can be referenced is more easily managed and makes sure responsibilities are split is my current goal. The token request would make sure the correct endpoint is called and that the result is saved in a variable so the request that will be called afterward can use it. The request that is manually called (which indirectly also executes the token request) will then take care of running tests and showing the response. I think this is what Silas meant with this.
Request A: create session, store session id in ENV
Request B: get Auth token, uses session id from ENV, creates token which is stored in ENV
Request C: does something with that token (A and B have to be run before, always)
It could be possible that the token request is only required for 4 of 10 requests in the collection. It would be unclear, inefficient, and difficult to manage if for each of these requests a JSON request has to be set up in a pre-request script.
- I’ve unfortunately not gotten the
setNextRequest
function to work for the thing I am looking to do, the reason is likely stated in the documentation.
Use setNextRequest() when you run an entire collection
The postman.setNextRequest()
is intended for use when running a collection using the Collection Runner, the Postman CLI, or Newman. It has no effect when you run a request using Send .
This restriction makes it not possible to run a test by ID or name before the executed test. For example, I have 2 requests named “/berry” and “token”. When I manually execute the “/berry” request, I would like to execute the “token” request before the “/berry” request is executed to make sure I am authorized to do so without having to do another manual execution of the “token” request.
So to clarify, I’m looking to call requests by ID or Name in the pre-request script when manually executing another request.
It could very well be that I am missing something, if so it would be great if someone could point me into the right direction. If this is not possible that’s fine.