JSON Report
To generate a report in JSON format, use the--reporter-json option:
copy
JUnit Report
To generate a report in JUnit format, use the--reporter-junit option:
copy
HTML Report
To generate a human-readable HTML report, use the--reporter-html option:
copy
Running Multiple Reporters Simultaneously
You can generate multiple reports at once by specifying more than one reporter option. For example, to generate JSON, JUnit, and HTML reports simultaneously, run:copy
results.json, results.xml, and results.html, allowing you to analyze the results in different formats as needed.
Secret Masking in Reports: When running CLI and generating reports, sensitive data like secrets can be automatically masked to prevent exposure. Learn more about Secret Masking.
Skipping Specific Headers in the Report
If you want to exclude certain headers from the report, use the--reporter-skip-headers option. You can list multiple headers to skip, separated by spaces.
Skip All Headers in the Report
To exclude all headers from the report, use the--reporter-skip-all-headers option. This will remove all headers from the output report, ensuring a cleaner result.
copy
Skipping Request and Response Bodies in the Report
Reports can include large request and response payloads. Use these flags to omit bodies and keep report files smaller:| Option | Description |
|---|---|
--reporter-skip-request-body | Omits request bodies from reports |
--reporter-skip-response-body | Omits response bodies from reports |
--reporter-skip-body | Shorthand: omits both request and response bodies from reports |
| Flags used | Result |
|---|---|
Both --reporter-skip-request-body and --reporter-skip-response-body | Omits both request and response bodies |
| Neither (default) | Reports include both request and response bodies |
copy