2022-08-10 14:34:27 +02:00
---
id: trace-viewer-intro
2023-03-06 20:52:58 +01:00
title: "Trace viewer"
2022-08-10 14:34:27 +02:00
---
2023-09-22 16:57:02 +02:00
## Introduction
2022-08-10 14:34:27 +02:00
Playwright Trace Viewer is a GUI tool that lets you explore recorded Playwright traces of your tests meaning you can go back and forward though each action of your test and visually see what was happening during each action.
**You will learn**
- How to record a trace
- How to open the trace viewer
## Recording a trace
2023-09-22 16:57:02 +02:00
* langs: python
2022-08-10 14:34:27 +02:00
2023-09-22 16:57:02 +02:00
Traces can be recorded by running your tests with the `--tracing` flag.
2022-08-10 14:34:27 +02:00
2023-09-22 16:57:02 +02:00
```bash
pytest --tracing on
```
Options for tracing are:
- `on` : Record trace for each test
- `off` : Do not record trace. (default)
- `retain-on-failure` : Record trace for each test, but remove all traces from successful test runs.
2022-08-10 14:34:27 +02:00
2023-09-22 16:57:02 +02:00
This will record the trace and place it into the file named `trace.zip` in your `test-results` directory.
2022-08-10 14:34:27 +02:00
2023-11-22 19:40:23 +01:00
< details >
< summary > If you are not using Pytest, click here to learn how to record traces.< / summary >
2022-08-10 14:34:27 +02:00
```python async
browser = await chromium.launch()
context = await browser.new_context()
# Start tracing before creating / navigating a page.
await context.tracing.start(screenshots=True, snapshots=True, sources=True)
2022-11-08 14:22:14 -08:00
page = await context.new_page()
2022-08-10 14:34:27 +02:00
await page.goto("https://playwright.dev")
# Stop tracing and export it into a zip archive.
await context.tracing.stop(path = "trace.zip")
```
```python sync
browser = chromium.launch()
context = browser.new_context()
# Start tracing before creating / navigating a page.
context.tracing.start(screenshots=True, snapshots=True, sources=True)
2022-11-08 14:22:14 -08:00
page = context.new_page()
2022-08-10 14:34:27 +02:00
page.goto("https://playwright.dev")
# Stop tracing and export it into a zip archive.
context.tracing.stop(path = "trace.zip")
```
2023-09-22 16:57:02 +02:00
< / details >
## Recording a trace
2023-12-13 21:03:29 -08:00
* langs: java
2023-09-22 16:57:02 +02:00
Traces can be recorded using the [`property: BrowserContext.tracing` ] API as follows:
```java
Browser browser = browserType.launch();
BrowserContext context = browser.newContext();
// Start tracing before creating / navigating a page.
context.tracing().start(new Tracing.StartOptions()
.setScreenshots(true)
.setSnapshots(true)
.setSources(true));
Page page = context.newPage();
page.navigate("https://playwright.dev");
// Stop tracing and export it into a zip archive.
context.tracing().stop(new Tracing.StopOptions()
.setPath(Paths.get("trace.zip")));
```
2023-12-13 21:03:29 -08:00
This will record the trace and place it into the file named `trace.zip` .
## Recording a trace
* langs: csharp
Traces can be recorded using the [`property: BrowserContext.tracing` ] API as follows:
< Tabs
groupId="test-runners"
defaultValue="nunit"
values={[
{label: 'NUnit', value: 'nunit'},
{label: 'MSTest', value: 'mstest'}
]
}>
< TabItem value = "nunit" >
2022-08-10 14:34:27 +02:00
```csharp
2023-12-13 21:03:29 -08:00
namespace PlaywrightTests;
2022-08-10 14:34:27 +02:00
2023-12-13 21:03:29 -08:00
[Parallelizable(ParallelScope.Self)]
[TestFixture]
public class Tests : PageTest
2022-08-10 14:34:27 +02:00
{
2023-12-13 21:03:29 -08:00
[SetUp]
public async Task Setup()
{
await Context.Tracing.StartAsync(new()
{
Title = TestContext.CurrentContext.Test.ClassName + "." + TestContext.CurrentContext.Test.Name,
Screenshots = true,
Snapshots = true,
Sources = true
});
}
[TearDown]
public async Task TearDown()
{
await Context.Tracing.StopAsync(new()
{
Path = Path.Combine(
TestContext.CurrentContext.WorkDirectory,
"playwright-traces",
$"{TestContext.CurrentContext.Test.ClassName}.{TestContext.CurrentContext.Test.Name}.zip"
)
});
}
[Test]
public async Task TestYourOnlineShop()
{
// ..
}
}
```
2022-08-10 14:34:27 +02:00
2023-12-13 21:03:29 -08:00
< / TabItem >
< TabItem value = "mstest" >
2022-08-10 14:34:27 +02:00
2023-12-13 21:03:29 -08:00
```csharp
using System.Text.RegularExpressions;
using Microsoft.Playwright;
using Microsoft.Playwright.MSTest;
2024-05-02 12:06:39 +02:00
namespace PlaywrightTests;
2023-12-13 21:03:29 -08:00
[TestClass]
2024-05-02 12:06:39 +02:00
public class ExampleTest : PageTest
2022-08-10 14:34:27 +02:00
{
2023-12-13 21:03:29 -08:00
[TestInitialize]
public async Task TestInitialize()
{
await Context.Tracing.StartAsync(new()
{
2024-05-02 12:06:39 +02:00
Title = TestContext.CurrentContext.Test.ClassName + "." + TestContext.
2023-12-13 21:03:29 -08:00
Screenshots = true,
Snapshots = true,
Sources = true
});
}
[TestCleanup]
public async Task TestCleanup()
{
await Context.Tracing.StopAsync(new()
{
Path = Path.Combine(
Environment.CurrentDirectory,
"playwright-traces",
2024-05-02 12:06:39 +02:00
$"{TestContext.CurrentContext.Test.ClassName}.{TestContext.CurrentContext.Test.Name}.zip"
2023-12-13 21:03:29 -08:00
)
});
}
[TestMethod]
2024-05-02 12:06:39 +02:00
public async Task GetStartedLink()
2023-12-13 21:03:29 -08:00
{
// ...
}
}
2022-08-10 14:34:27 +02:00
```
2023-12-13 21:03:29 -08:00
< / TabItem >
< / Tabs >
2024-05-02 12:06:39 +02:00
This will record a zip file for each test, e.g. `PlaywrightTests.ExampleTest.GetStartedLink.zip` and place it into the `bin/Debug/net8.0/playwright-traces/` directory.
2022-08-10 14:34:27 +02:00
## Opening the trace
2024-05-02 12:06:39 +02:00
You can open the saved trace using the Playwright CLI or in your browser on [`trace.playwright.dev` ](https://trace.playwright.dev ). Make sure to add the full path to where your trace's zip file is located. Once opened you can click on each action or use the timeline to see the state of the page before and after each action. You can also inspect the log, source and network during each step of the test. The trace viewer creates a DOM snapshot so you can fully interact with it, open devtools etc.
2022-08-10 14:34:27 +02:00
```bash java
2023-01-05 19:55:07 +01:00
mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="show-trace trace.zip"
2022-08-10 14:34:27 +02:00
```
```bash python
playwright show-trace trace.zip
```
```bash csharp
2024-05-02 12:06:39 +02:00
pwsh bin/Debug/net8.0/playwright.ps1 show-trace bin/Debug/net8.0/playwright-traces/PlaywrightTests.ExampleTest.GetStartedLink.zip
2022-08-10 14:34:27 +02:00
```
2024-05-02 12:06:39 +02:00
######
* langs: python, java
2022-08-10 14:34:27 +02:00
2023-09-22 16:57:02 +02:00

2022-08-10 14:34:27 +02:00
2024-05-02 12:06:39 +02:00
######
* langs: csharp

2022-08-10 14:34:27 +02:00
To learn more check out our detailed guide on [Trace Viewer ](/trace-viewer.md ).
2023-09-22 16:57:02 +02:00
## What's next
- [Run tests on CI with GitHub Actions ](/ci-intro.md )
- [Learn more about Trace Viewer ](/trace-viewer.md )