reportportal / agent-js-cypress

Agent to integrate Cypress with ReportPortal.
https://www.npmjs.com/package/@reportportal/agent-js-cypress
Apache License 2.0
39 stars 39 forks source link

Is it possible to upload the successful screenshots & videos for test evidence to ReportPortal using cypress? #160

Open govindd06 opened 1 year ago

govindd06 commented 1 year ago

In Cypress, it is uploading the screenshot for the failure tests to Reportportal but it is not sending the screenshot for successful tests steps screenshots. Is it possible to configure to capture both success and failure screenshots in the ReportPortal. And also how to upload the videos of only the failure tests to ReportPortal.

thomaswinkler commented 1 year ago

@govindd06 Not aware Cypress has an option to create screenshots for passed tests. What you could do however is to add a cy.screenshot() in afterEach(). To make this work you might need to checkout #146.

Videos is not yet supported, you might try #150.

gustawx commented 1 year ago

@govindd06 you can simply use cy.screenshot() to take the screenshot at any point of time during the test execution and, I guess, next send it to RP with cy.log(message, screenshotInBase64)

bmanubolu commented 7 months ago

do we have a solution to videos to report portal in cypress.