Package com.microsoft.playwright
Class Tracing.StartChunkOptions
- java.lang.Object
-
- com.microsoft.playwright.Tracing.StartChunkOptions
-
-
Field Summary
Fields Modifier and Type Field Description String
name
If specified, the trace is going to be saved into the file with the given name inside thetracesDir
folder specified inBrowserType.launch()
.String
title
Trace name to be shown in the Trace Viewer.
-
Constructor Summary
Constructors Constructor Description StartChunkOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tracing.StartChunkOptions
setName(String name)
If specified, the trace is going to be saved into the file with the given name inside thetracesDir
folder specified inBrowserType.launch()
.Tracing.StartChunkOptions
setTitle(String title)
Trace name to be shown in the Trace Viewer.
-
-
-
Field Detail
-
name
public String name
If specified, the trace is going to be saved into the file with the given name inside thetracesDir
folder specified inBrowserType.launch()
.
-
title
public String title
Trace name to be shown in the Trace Viewer.
-
-
Method Detail
-
setName
public Tracing.StartChunkOptions setName(String name)
If specified, the trace is going to be saved into the file with the given name inside thetracesDir
folder specified inBrowserType.launch()
.
-
setTitle
public Tracing.StartChunkOptions setTitle(String title)
Trace name to be shown in the Trace Viewer.
-
-