Hi Team,
My requiremnt is that I need to share the HTML report generated from newman command through slack if newman JUnit test fails for the postman script.
if below command got some test case fails
newman run Suite.postman_collection.json --globals DEV.postman_environment.json --suppress-exit-code --reporters junit --reporter-junit-export postman-tests-results.xml
Then run below command and share the Report in Slack
newman run Suite.postman_collection.json --globals DEV.postman_environment.json --reporters cli,htmlextra --reporter-html-export report.html
Hi,
You could make a custom script that posts a file or image via Slack Incoming Webhook integration. Or you could render the html report in a headless browsers, upload the report to S3 and send a message with a link to Slack.
Post a message via Incoming Webhook - https://api.slack.com/messaging/webhooks
Post a file - https://api.slack.com/methods/files.upload
Cheers,
Leo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.