Package com.microsoft.playwright
Class Tracing.StartChunkOptions
- java.lang.Object
-
- com.microsoft.playwright.Tracing.StartChunkOptions
-
-
Field Summary
Fields Modifier and Type Field Description StringnameIf specified, intermediate trace files are going to be saved into the files with the given name prefix inside thetracesDirfolder specified inBrowserType.launch().StringtitleTrace 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.StartChunkOptionssetName(String name)If specified, intermediate trace files are going to be saved into the files with the given name prefix inside thetracesDirfolder specified inBrowserType.launch().Tracing.StartChunkOptionssetTitle(String title)Trace name to be shown in the Trace Viewer.
-
-
-
Field Detail
-
name
public String name
If specified, intermediate trace files are going to be saved into the files with the given name prefix inside thetracesDirfolder specified inBrowserType.launch(). To specify the final trace zip file name, you need to passpathoption toTracing.stopChunk()instead.
-
title
public String title
Trace name to be shown in the Trace Viewer.
-
-
Method Detail
-
setName
public Tracing.StartChunkOptions setName(String name)
If specified, intermediate trace files are going to be saved into the files with the given name prefix inside thetracesDirfolder specified inBrowserType.launch(). To specify the final trace zip file name, you need to passpathoption toTracing.stopChunk()instead.
-
setTitle
public Tracing.StartChunkOptions setTitle(String title)
Trace name to be shown in the Trace Viewer.
-
-