In Postman Flow, which block executes immediately after the Request block completes successfully?
Think about what controls the flow after a request finishes.
In Postman Flow, after a Request block finishes successfully, the connected Condition block executes next to decide the path.
Consider a Postman Flow with a Start block connected to a Delay block set to 2000 ms, which then connects to a Request block that returns status 200. What is the expected behavior?
Start -> Delay(2000ms) -> Request(status 200)
Think about how Delay blocks pause the flow before continuing.
The Delay block pauses the flow for the specified time before passing control to the Request block, which then executes and returns status 200.
Which assertion correctly checks that a response status code is 201 in a Postman Flow Test block?
Use the official Postman assertion syntax.
Option A uses the correct Postman syntax with pm.test and pm.response.to.have.status() to assert the status code.
A Postman Flow has a Condition block checking if response.status === 200. The flow always takes the false path even when the response status is 200. What is the most likely cause?
Check if the response data is available when the condition runs.
If the response object is undefined, the condition response.status === 200 evaluates to false, causing the flow to take the false path.
In a complex Postman Flow, you want to reuse the same Request block multiple times with different parameters. Which approach ensures maintainability and clarity?
Think about how variables help avoid repetition and ease updates.
Using a single Request block with variables allows changing parameters dynamically, making the flow easier to maintain and clearer.