Questions tagged [postman-collection-runner]

Use this tag for issues with Postman Collection Runner; use the [postman] tag for general Postman issues.

You can use Collection Runner to run all the requests of a Postman Collection in one go.

Postman Collection Runner

Reference:
https://learning.postman.com/docs/running-collections/intro-to-collection-runs/

471 questions
2
votes
0 answers

Disable postman download popup

I use postman collection runner to test that my services are up. I have a POST request that return a pdf file. When it comes to that request, I have a popup asking to download the pdf file. For testing that my request is ok, I just need the return…
Tyvain
  • 2,640
  • 6
  • 36
  • 70
2
votes
0 answers

Path variables aren't substituted when running tests using collection runner

I'm using Postman for testing of my REST APIs. Within URL I can use path variables like: https://api.library.com/:entity/ and specify actual value using Params button. Everything works fine when testing using Send command. Variable :entity is…
Jan Liska
  • 31
  • 5
2
votes
0 answers

"Send and Download" in Postman Collection Runner

I'm using postman since few day. I have a lot of request to test in a raw. I'm asking if on postman an option like "Send and Download" for one request exist in the Collection Runner to save all the file from GET request in my collection.
1
vote
1 answer

Postman keeps crashing: "Render frame was disposed before WebFrameMain could be accessed"

This is the error I receive in the logs from Postman when it crashes (typically when sending requests): [98038][1681760232816][main][error]["Main~handleUncaughtError - Uncaught errors",{"name":"Error","message":"Render frame was disposed before…
Dixon Nass
  • 13
  • 3
1
vote
0 answers

Can I remove request calls in the Newman CLI Reporting?

I am in the process of converting an application's testing API Framework from Karate to Postman / Newman. I have all of the tests passing and everything is going well. However, due to the size of the application there are a lot of tests and requests…
1
vote
3 answers

How to work around error in Postman "You have exhausted all the runs. To keep running collections, create an account..."

After the last Postman update I'm getting the error in the title on the Collection Runner page. I have been running about the same number of collections as always, but I noticed an automatic update to Postman this morning (even though I have that…
tex-lex
  • 21
  • 1
  • 5
1
vote
1 answer

Need to avoid manual clicking GETNEWACCESSTOEKEN Button in postman

My current project is Oauth 2.0 autho based.At postman,I can generate accesstoken using #Getnewaccesstoken button for my collection. I dont want to click the generate token button in every time...Is any option there in prerequiste script form for…
1
vote
0 answers

Are POST requests with Content-Disposition header supported in Postman?

I did some research both in the Postman GUI (auto-completion for request headers which does not offer "Content-Disposition") and in learning.postman.com/docs and there is no mention of "Content-Disposition" request header. I am using this request…
1
vote
0 answers

Dynamic Variables in Postman is not coming properly

I am trying to delete users in bulk with Postman. To achieve this operation I have to pass all the user id in append url which is like this - https://example.com/test/Users/{{id}} id value I am taking from csv file. Please find below screenshot for…
curiousMind
  • 2,812
  • 1
  • 17
  • 38
1
vote
0 answers

How can i pass an XML response to an environment variable in Postman?

Here is the response i'm getting from my request : I added this code to the tests tab of my request : var XMLData = xml2Json(responseBody); sessionId =…
1
vote
1 answer

POSTMAN - no cli option

I wanted to run postman as cli mode, created the collection but under the runner option, I unable to find the cli option, also referred documentation, did the fresh install on other machines. Also setup the package via powershell. But under the run…
user1582596
  • 503
  • 2
  • 5
  • 16
1
vote
0 answers

How to open Postman test run results from exported file

I exported the Postman collection test result manually. How to open it? I keep getting the error "Failed to import..." when I try to open it with File->Import. Although when I select the file it is recognized as postman collection run.
Arkanit
  • 23
  • 3
1
vote
1 answer

Running Docker image of Postman from Gitlab CI pipeline

I want to run a Postman collection from a Docker image in a Gitlab CI pipeline. The Docker socket file is already mounted for the gitlab-ci-runner so the runner has access to the docker server. Here's the job definition from…
Lawrence I. Siden
  • 9,191
  • 10
  • 43
  • 56
1
vote
1 answer

Static url variable is not found in POSTMAN request

I want to define a custom static url for my connections in Postman: Then I tried calling a GET request by that custom static url: But I get Could not send request message because the variable is not defined somehow: But I don't know why it can…
Pouya
  • 117
  • 1
  • 14
1
vote
1 answer

How can you timeout a request from newman CLI

I have a test suite in Postman and for a request it waits for a specific status in the response body. I have created a loop through to trigger the request each time until that status field is updated with the expected flag. The problem is that there…