Questions tagged [postman-newman]
85 questions
0
votes
0 answers
Publish Test Results step fails on "No Result Found to Publish", but JUnit file is present
I have an Azure DevOps pipeline that runs some Postman tests with newman, then publishes the test results to a JUnit XML file. I have this step:
Followed by this step (all other steps have been disabled):
However, when running the pipeline I get…

yesman
- 7,165
- 15
- 52
- 117
0
votes
0 answers
Gitlab-ci.yml fails while trying to get a postman/newman report: newman: could not find "" reporter
I'm having problems outputting a report from newman.
Here's the gitlab-ci.yml code i'm using :
Postman_Tests_Dev:
stage: test_dev
image:
name: postman/newman:5.2.3-alpine
entrypoint: ["/bin/sh", "-c"]
script:
- newman --version
…

dot
- 14,928
- 41
- 110
- 218
-1
votes
0 answers
Error message appearing while generating html reports in newman
enter image description hereI have installed Newman and Newman-reporter-HTML in the same folder, still whenever I run Postman collection through CLI and try to generate reports it displays the following error:
"ensure that the reporter is installed…
-1
votes
1 answer
By postman testing is there anyway to call after test for cleanup
In Junit test there is @After for the clenaup. Is there any similar way for the postman testing? If yes, how it should be done? Pls let me know.

Masi Boo
- 635
- 1
- 10
- 24
-1
votes
1 answer
How to form pm.test assertions in Postman
Given the following transaction reply how would I form a pm.test assertion for it?
{
"data": {
"clearEmployerClaim": true
}
}
This isn't working for me:
pm.test("clear employer claim status returned", () => {
const response =…

Sulteric
- 505
- 6
- 16
-1
votes
1 answer
I want to show the pipeline summary on the dashboard
I am creating an html viewer tab as a result of pipeline and this tab contains test result and code covarage for team. I want to show this tab effectively on the dashboard. It will be enough for me to reflect the code coverage on any base to the…

EFE FEHMİ TAYCI
- 5
- 2
-1
votes
1 answer
How do I access and update global variables in postman from newman run
The postman collection is within a team workspace(not public), so unable to access the collection from newman via link.
The use case here is- I have around 5 scripts in my collection and the output of the first script will be saved as a global…

Shar
- 1
- 3
-1
votes
1 answer
how to specify on newman what port and host to run on
I'm trying to integrate Newman(postman CLI tool) in my app, and I want to run it first on the localhost on a specific port, and change it in accordance later on.
Any suggestions on how to do that with the CLI?

Aviad
- 33
- 8
-2
votes
1 answer
Integrate ReportPortal with TestComplete
I am doing a feasibility study to integrate ReportPortal with TestComplete for our project, Currently trying to hit the API call available in this 'http://{IP Address}:8080/ui/#api' using aqhttp, still exploring on that, So would I like to know is…