Skip downloading CI artifacts and manually inspecting traces from CLI. Get an augmented trace viewer experience directly in your browser - no artifact management required.
Inspect Full DOM Recordings
Search & Debug Network Payloads
Uncover Race Conditions with Test Timeline
and more...
Console Logs
View any console message emitted from your app, test, or browser.
Historic Test Trend
Determine historical test flakiness or errors for any test case in a single click.
Try the Live Demo
Try out the live debugger below. You can open the browser dev tools and inspect the DOM snapshot as well.
Loading Demo...
Keep On Top of App & Test Suite Health
Get a birds-eye view on errors, flakes, slow tests, and common error messages all within a few clicks.
Track Test Suite Trends
Actionable Analytics Directly in Pull Requests
Get started in less than 2 minutes
Add our Playwright reporter with just 4 lines of configuration. Fully compatible with your existing Playwright test suite, no test changes necessary.
1. Install via NPM or Yarn
2. Configure Reporter Options
playwright.config.ts
1
1
import type {PlaywrightTestConfig}from'@playwright/test';
2
2
3
3
const config:PlaywrightTestConfig={
4
+
reporter:'@deploysentinel/playwright',
5
+
use:{
6
+
/* Make sure this is not 'off' so debugger can upload trace info */