docs(tracing): clarify capture semantics (#11756)

This commit is contained in:
Yury Semikhatsky 2022-01-31 11:44:10 -08:00 committed by GitHub
parent 5a413166b6
commit 129d9d3643
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -125,7 +125,9 @@ a timeline preview.
### option: Tracing.start.snapshots ### option: Tracing.start.snapshots
- `snapshots` <[boolean]> - `snapshots` <[boolean]>
Whether to capture DOM snapshot on every action. If this option is true tracing will
* capture DOM snapshot on every action
* record network activity
### option: Tracing.start.sources ### option: Tracing.start.sources
* langs: js, csharp, python * langs: js, csharp, python

View File

@ -14708,7 +14708,9 @@ export interface Tracing {
screenshots?: boolean; screenshots?: boolean;
/** /**
* Whether to capture DOM snapshot on every action. * If this option is true tracing will
* - capture DOM snapshot on every action
* - record network activity
*/ */
snapshots?: boolean; snapshots?: boolean;