playwright-ctrf-json-report
playwright-ctrf-json-report copied to clipboard
A Playwright JSON test results reporter that follows the CTRF schema
## Issues While starting to work with CTRF and `playwright-ctrf-json-reporter` I noticed some ways to improve the errors. Resolving mentioned issues below would generally help to debug errors more easily....
When global errors occur, add to results.extra property
- Report all child steps in extra property of a step - Include hook, expect, pw:api and test.step steps by default - Add a new configuration option - testStepsOnly -...
Hi, I have added the reporter to the `playwright.config.ts` file as follows: ```yaml reporter: [['playwright-dtrf-json-reporter', { outputDir: '/microsite/ctrf-report' }]] ``` However, I am encountering the following error: ``` Error in...
Currently, in CTRF report, all the test steps provide only "name" and "status" of given step. Playwright provides many more details for each of the step, including a step's category,...
Playwright keeps changing their (undocumented) JSONL output, so I figured I would give CTRF a try. I have it integrated into my pipeline, but the outputs are not what I...