I'm trying to generate a html-extra report with newman for postman automation API collection. But only found a way to generate a automation report with only one file. But I have multiple data files to input when executing APIs . So what is the command for that. I was using the following command to execute with a one file
newman run collection_name -d path_of_the_json_file.json -e C:\Users\User\Downloads\DOCUMENT-01.postman_environment.json -r htmlextra
Or can someone please suggest me a tool/library other than newman, to generate a postman automation report which have different external data files for each and every APIs
newman run your_collection_name.json -e your_environment_name.json -n 1 -r html
-n 1 represents no. of iterations. The collection name and environment name would be the ones you exported from the postman. If there is no environment then you can skip the environment syntax started from -e.
This will generate the report for all the APIs in a collection.