Trace viewer
Playwright Trace Viewer is a GUI tool that helps you explore recorded Playwright traces after the script has ran. You can open traces locally or in your browser on trace.playwright.dev
.
Viewing the trace
You can open the saved trace using Playwright CLI or in your browser on trace.playwright.dev
.
npx playwright show-trace trace.zip
Actions
Once trace is opened, you will see the list of actions Playwright performed on the left hand side:

Selecting each action reveals:
- action snapshots,
- action log,
- source code location,
- network log for this action
In the properties pane you will also see rendered DOM snapshots associated with each action.
Metadata
See metadata such as the time the action was performed, what browser engine was used, what the viewport was and if it was mobile and how many pages, actions and events were recorded.

Screenshots
When tracing with the screenshots
option turned on, each trace records a screencast and renders it as a film strip:

You can hover over the film strip to see a magnified image of for each action and state which helps you easily find the action you want to inspect.

Snapshots
When tracing with the snapshots
option turned on, Playwright captures a set of complete DOM snapshots for each action. Depending on the type of the action, it will capture:
Type | Description |
---|---|
Before | A snapshot at the time action is called. |
Action | A snapshot at the moment of the performed input. This type of snapshot is especially useful when exploring where exactly Playwright clicked. |
After | A snapshot after the action. |
Here is what the typical Action snapshot looks like:

Notice how it highlights both, the DOM Node as well as the exact click position.
Call
See what action was called, the time and duration as well as parameters, return value and log.

Console
See the console output for the action where you can see console logs or errors.

Network
See any network requests that were made during the action.

Source
See the source code for your entire test.

Recording a trace locally
To record a trace during development mode set the --trace
flag to on
when running your tests.
npx playwright test --trace on
You can then open the HTML report and click on the trace icon to open the trace.
npx playwright show-report
Recording a trace on CI
Traces should be run on continuous integration on the first retry of a failed test by setting the trace: 'on-first-retry'
option in the test configuration file. This will produce a trace.zip
file for each test that was retried.
- Test
- Library
import { defineConfig } from '@playwright/test';
export default defineConfig({
retries: 1,
use: {
trace: 'on-first-retry',
},
});
const browser = await chromium.launch();
const context = await browser.newContext();
// Start tracing before creating / navigating a page.
await context.tracing.start({ screenshots: true, snapshots: true });
const page = await context.newPage();
await page.goto('https://playwright.dev');
// Stop tracing and export it into a zip archive.
await context.tracing.stop({ path: 'trace.zip' });
Available options to record a trace:
'on-first-retry'
- Record a trace only when retrying a test for the first time.'on-all-retries'
- Record traces for all test retries.'off'
- Do not record a trace.'on'
- Record a trace for each test. (not recommended as it's performance heavy)'retain-on-failure'
- Record a trace for each test, but remove it from successful test runs.
You can also use trace: 'retain-on-failure'
if you do not enable retries but still want traces for failed tests.
If you are not using Playwright as a Test Runner, use the browserContext.tracing API instead.
Viewing the trace
You can open the saved trace using Playwright CLI or in your browser on trace.playwright.dev
.
npx playwright show-trace trace.zip
Using trace.playwright.dev
trace.playwright.dev is a statically hosted variant of the Trace Viewer. You can upload trace files using drag and drop.

Viewing remote traces
You can open remote traces using it's URL. They could be generated on a CI run which makes it easy to view the remote trace without having to manually download the file.
npx playwright show-trace https://example.com/trace.zip
You can also pass the URL of your uploaded trace (e.g. inside your CI) from some accessible storage as a parameter. CORS (Cross-Origin Resource Sharing) rules might apply.
https://trace.playwright.dev/?trace=https://demo.playwright.dev/reports/todomvc/data/cb0fa77ebd9487a5c899f3ae65a7ffdbac681182.zip