Hi folks
I am running my tests on github actions, and I have job something like this
jobs: run-e2e: strategy: matrix: project: ['api', 'ui']
and tests are running like npx playwright test --project ${{ matrix.project }}
It does run the different projects but no **blob report **was generated for the run. In playwright.conf.ts , I have configured the report
reporter: process.env.CI ? 'blob' : 'html'
I can see in playwright doc blob report will be generated into blob-report directory. But i don't see any blob report folder after execution . My step to upload artifcats looks like this
And i get the error like Warning: No files were found with the provided path: blob-report. No artifacts will be uploaded. I am attaching the screenshot for the failures.
Any help would be appreciated.
This thread is trying to answer question "Why is the blob report not being generated and how can this issue be resolved?"
Rayrun is a community for QA engineers. I am constantly looking for new ways to add value to people learning Playwright and other browser automation frameworks. If you have feedback, email [email protected].