Trace Viewer
Playwright Trace Viewer is a GUI tool that helps exploring recorded Playwright traces after the script ran.
#
Recording a traceSet the trace: 'on-first-retry'
option in the test configuration file. This will produce trace.zip
file for each test that was retried.
- TypeScript
- JavaScript
- Library
import { PlaywrightTestConfig } from '@playwright/test';const config: PlaywrightTestConfig = { retries: 1, use: { trace: 'on-first-retry', },};export default config;
// @ts-check
/** @type {import('@playwright/test').PlaywrightTestConfig} */const config = { retries: 1, use: { trace: 'on-first-retry', },};
module.exports = config;
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' });
You can also use trace: 'retain-on-failure'
if you do not enable retries but still want traces for failed tests.
Available options to record a trace:
'off'
- Do not record a trace.'on'
- Record a trace for each test.'retain-on-failure'
- Record a trace for each test, but remove it from successful test runs.'on-first-retry'
- Record a trace only when retrying a test for the first time.
If you are not using Playwright Test, use the browserContext.tracing API instead.
#
Viewing the traceYou can open the saved trace using Playwright CLI:
npx playwright show-trace trace.zip
#
ActionsOnce 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.
#
ScreenshotsWhen tracing with the screenshots
option turned on, each trace records screencast and renders it as a film strip:
You can hover over the film strip to see a magnified image:
That helps locating the action of interest very quickly.
#
SnapshotsWhen 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.