Package com.microsoft.playwright
Interface Tracing
-
public interface TracingAPI for collecting and saving Playwright traces. Playwright traces can be opened in Trace Viewer after Playwright script runs.Start recording a trace before performing actions. At the end, stop tracing and save it to a file.
Browser browser = chromium.launch(); BrowserContext context = browser.newContext(); context.tracing().start(new Tracing.StartOptions() .setScreenshots(true) .setSnapshots(true)); Page page = context.newPage(); page.navigate("https://playwright.dev"); context.tracing().stop(new Tracing.StopOptions() .setPath(Paths.get("trace.zip")));
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTracing.StartChunkOptionsstatic classTracing.StartOptionsstatic classTracing.StopChunkOptionsstatic classTracing.StopOptions
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidstart()Start tracing.voidstart(Tracing.StartOptions options)Start tracing.default voidstartChunk()Start a new trace chunk.voidstartChunk(Tracing.StartChunkOptions options)Start a new trace chunk.default voidstop()Stop tracing.voidstop(Tracing.StopOptions options)Stop tracing.default voidstopChunk()Stop the trace chunk.voidstopChunk(Tracing.StopChunkOptions options)Stop the trace chunk.
-
-
-
Method Detail
-
start
default void start()
Start tracing.Usage
context.tracing().start(new Tracing.StartOptions() .setScreenshots(true) .setSnapshots(true)); Page page = context.newPage(); page.navigate("https://playwright.dev"); context.tracing().stop(new Tracing.StopOptions() .setPath(Paths.get("trace.zip")));- Since:
- v1.12
-
start
void start(Tracing.StartOptions options)
Start tracing.Usage
context.tracing().start(new Tracing.StartOptions() .setScreenshots(true) .setSnapshots(true)); Page page = context.newPage(); page.navigate("https://playwright.dev"); context.tracing().stop(new Tracing.StopOptions() .setPath(Paths.get("trace.zip")));- Since:
- v1.12
-
startChunk
default void startChunk()
Start a new trace chunk. If you'd like to record multiple traces on the sameBrowserContext, useTracing.start()once, and then create multiple trace chunks withTracing.startChunk()andTracing.stopChunk().Usage
context.tracing().start(new Tracing.StartOptions() .setScreenshots(true) .setSnapshots(true)); Page page = context.newPage(); page.navigate("https://playwright.dev"); context.tracing().startChunk(); page.getByText("Get Started").click(); // Everything between startChunk and stopChunk will be recorded in the trace. context.tracing().stopChunk(new Tracing.StopChunkOptions() .setPath(Paths.get("trace1.zip"))); context.tracing().startChunk(); page.navigate("http://example.com"); // Save a second trace file with different actions. context.tracing().stopChunk(new Tracing.StopChunkOptions() .setPath(Paths.get("trace2.zip")));- Since:
- v1.15
-
startChunk
void startChunk(Tracing.StartChunkOptions options)
Start a new trace chunk. If you'd like to record multiple traces on the sameBrowserContext, useTracing.start()once, and then create multiple trace chunks withTracing.startChunk()andTracing.stopChunk().Usage
context.tracing().start(new Tracing.StartOptions() .setScreenshots(true) .setSnapshots(true)); Page page = context.newPage(); page.navigate("https://playwright.dev"); context.tracing().startChunk(); page.getByText("Get Started").click(); // Everything between startChunk and stopChunk will be recorded in the trace. context.tracing().stopChunk(new Tracing.StopChunkOptions() .setPath(Paths.get("trace1.zip"))); context.tracing().startChunk(); page.navigate("http://example.com"); // Save a second trace file with different actions. context.tracing().stopChunk(new Tracing.StopChunkOptions() .setPath(Paths.get("trace2.zip")));- Since:
- v1.15
-
stop
default void stop()
Stop tracing.- Since:
- v1.12
-
stop
void stop(Tracing.StopOptions options)
Stop tracing.- Since:
- v1.12
-
stopChunk
default void stopChunk()
Stop the trace chunk. SeeTracing.startChunk()for more details about multiple trace chunks.- Since:
- v1.15
-
stopChunk
void stopChunk(Tracing.StopChunkOptions options)
Stop the trace chunk. SeeTracing.startChunk()for more details about multiple trace chunks.- Since:
- v1.15
-
-