agent-js-playwright
agent-js-playwright copied to clipboard
Agent to integrate Playwright with ReportPortal.
Sample test code: ``` test.beforeAll(async ({ browser }) => { await test.step( "Check if flag is on", async () => { const page = await browser.newPage(); const flag=false; test.skip(!flag, "Cannot...
Console log is flooded with report portal events like follwing ```{"type":"rp:addLog","data":{"level":"TRACE","message":"[7/7/2023 1:08:19 PM] WARNING: Not logged out"}}``` can it be disabled?
Not able to connect playwright with report portal Getting below error Failed to start suite: Error: unable to verify the first certificate
Do we have an option to attach playwright report i.e, index.html file into report portal using report portal agent? Currently with the available option , we are able to attach...
Here is the config: ```javascript const testTags = process.env.TAGS ? process.env.TAGS : 'All'; const RPconfig = { token: process.env.REPORT_PORTAL_API_KEY, endpoint: process.env.REPORT_PORTAL_URL, project: process.env.PROJECT_NAME, launch: `${process.env.BRANCH_NAME} - ${process.env.BUILD_NUMBER}`, attributes: [ {...
Hi, I'm facing to the same issue described in [#45](https://github.com/reportportal/agent-js-playwright/issues/45) Versions tested : "@playwright/test": `"^1.24.2"` `"^1.25.1"` "@reportportal/agent-js-playwright": `"^5.0.5"`,`"^5.0.4"` Reporter agent works well if i run test like this : ```test.spec.ts...
Hi team! We are having some issues with Report Portal, when we try to delete a report or when we send the report to report portal from Playwright we see...
Currently we need to add tags on each test and call ReportPortalApi, would be good to add this by default on src/reporter.ts ```javascript const startTestItem: StartTestObjType = { name: test.title,...