puppeteer/docs/api/puppeteer.jscoverage.start.md

29 lines
877 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: JSCoverage.start
---
# JSCoverage.start() method
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class JSCoverage {
start(options?: {
resetOnNavigation?: boolean;
reportAnonymousScripts?: boolean;
includeRawScriptCoverage?: boolean;
useBlockCoverage?: boolean;
2022-07-05 13:41:43 +00:00
}): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------ |
| options | &#123; resetOnNavigation?: boolean; reportAnonymousScripts?: boolean; includeRawScriptCoverage?: boolean; useBlockCoverage?: boolean; &#125; | _(Optional)_ |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;void&gt;