Tracing
API for collecting and saving Playwright traces. Playwright traces can be opened in Trace Viewer after Playwright script runs.
You probably want to enable tracing in your config file instead of using context.tracing
.
The context.tracing
API captures browser operations and network activity, but it doesn't record test assertions (like expect
calls). We recommend enabling tracing through Playwright Test configuration, which includes those assertions and provides a more complete trace for debugging test failures.
Start recording a trace before performing actions. At the end, stop tracing and save it to a file.
- Sync
- Async
browser = chromium.launch()
context = browser.new_context()
context.tracing.start(screenshots=True, snapshots=True)
page = context.new_page()
page.goto("https://playwright.dev")
context.tracing.stop(path = "trace.zip")
browser = await chromium.launch()
context = await browser.new_context()
await context.tracing.start(screenshots=True, snapshots=True)
page = await context.new_page()
await page.goto("https://playwright.dev")
await context.tracing.stop(path = "trace.zip")
Methods
group
Added in: v1.49Use test.step
instead when available.
Creates a new group within the trace, assigning any subsequent API calls to this group, until tracing.group_end() is called. Groups can be nested and will be visible in the trace viewer.
Usage
- Sync
- Async
# All actions between group and group_end
# will be shown in the trace viewer as a group.
page.context.tracing.group("Open Playwright.dev > API")
page.goto("https://playwright.dev/")
page.get_by_role("link", name="API").click()
page.context.tracing.group_end()
# All actions between group and group_end
# will be shown in the trace viewer as a group.
await page.context.tracing.group("Open Playwright.dev > API")
await page.goto("https://playwright.dev/")
await page.get_by_role("link", name="API").click()
await page.context.tracing.group_end()
Arguments
-
Group name shown in the trace viewer.
-
Specifies a custom location for the group to be shown in the trace viewer. Defaults to the location of the tracing.group() call.
Returns
group_end
Added in: v1.49Closes the last group created by tracing.group().
Usage
tracing.group_end()
Returns
start
Added in: v1.12Start tracing.
You probably want to enable tracing in your config file instead of using Tracing.start
.
The context.tracing
API captures browser operations and network activity, but it doesn't record test assertions (like expect
calls). We recommend enabling tracing through Playwright Test configuration, which includes those assertions and provides a more complete trace for debugging test failures.
Usage
- Sync
- Async
context.tracing.start(screenshots=True, snapshots=True)
page = context.new_page()
page.goto("https://playwright.dev")
context.tracing.stop(path = "trace.zip")
await context.tracing.start(screenshots=True, snapshots=True)
page = await context.new_page()
await page.goto("https://playwright.dev")
await context.tracing.stop(path = "trace.zip")
Arguments
-
If specified, intermediate trace files are going to be saved into the files with the given name prefix inside the traces_dir directory specified in browser_type.launch(). To specify the final trace zip file name, you need to pass
path
option to tracing.stop() instead. -
Whether to capture screenshots during tracing. Screenshots are used to build a timeline preview.
-
If this option is true tracing will
- capture DOM snapshot on every action
- record network activity
-
sources
bool (optional) Added in: v1.17#Whether to include source files for trace actions.
-
title
str (optional) Added in: v1.17#Trace name to be shown in the Trace Viewer.
Returns
start_chunk
Added in: v1.15Start a new trace chunk. If you'd like to record multiple traces on the same BrowserContext, use tracing.start() once, and then create multiple trace chunks with tracing.start_chunk() and tracing.stop_chunk().
Usage
- Sync
- Async
context.tracing.start(screenshots=True, snapshots=True)
page = context.new_page()
page.goto("https://playwright.dev")
context.tracing.start_chunk()
page.get_by_text("Get Started").click()
# Everything between start_chunk and stop_chunk will be recorded in the trace.
context.tracing.stop_chunk(path = "trace1.zip")
context.tracing.start_chunk()
page.goto("http://example.com")
# Save a second trace file with different actions.
context.tracing.stop_chunk(path = "trace2.zip")
await context.tracing.start(screenshots=True, snapshots=True)
page = await context.new_page()
await page.goto("https://playwright.dev")
await context.tracing.start_chunk()
await page.get_by_text("Get Started").click()
# Everything between start_chunk and stop_chunk will be recorded in the trace.
await context.tracing.stop_chunk(path = "trace1.zip")
await context.tracing.start_chunk()
await page.goto("http://example.com")
# Save a second trace file with different actions.
await context.tracing.stop_chunk(path = "trace2.zip")
Arguments
-
name
str (optional) Added in: v1.32#If specified, intermediate trace files are going to be saved into the files with the given name prefix inside the traces_dir directory specified in browser_type.launch(). To specify the final trace zip file name, you need to pass
path
option to tracing.stop_chunk() instead. -
title
str (optional) Added in: v1.17#Trace name to be shown in the Trace Viewer.
Returns
stop
Added in: v1.12Stop tracing.
Usage
tracing.stop()
tracing.stop(**kwargs)
Arguments
-
path
Union[str, pathlib.Path] (optional)#Export trace into the file with the given path.
Returns
stop_chunk
Added in: v1.15Stop the trace chunk. See tracing.start_chunk() for more details about multiple trace chunks.
Usage
tracing.stop_chunk()
tracing.stop_chunk(**kwargs)
Arguments
-
path
Union[str, pathlib.Path] (optional)#Export trace collected since the last tracing.start_chunk() call into the file with the given path.
Returns