mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
49 lines
629 B
Markdown
49 lines
629 B
Markdown
|
---
|
||
|
sidebar_label: Coverage.startCSSCoverage
|
||
|
---
|
||
|
|
||
|
# Coverage.startCSSCoverage() method
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Coverage {
|
||
|
startCSSCoverage(options?: CSSCoverageOptions): Promise<void>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
<table><thead><tr><th>
|
||
|
|
||
|
Parameter
|
||
|
|
||
|
</th><th>
|
||
|
|
||
|
Type
|
||
|
|
||
|
</th><th>
|
||
|
|
||
|
Description
|
||
|
|
||
|
</th></tr></thead>
|
||
|
<tbody><tr><td>
|
||
|
|
||
|
options
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
[CSSCoverageOptions](./puppeteer.csscoverageoptions.md)
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
_(Optional)_ Set of configurable options for coverage, defaults to `resetOnNavigation : true`
|
||
|
|
||
|
</td></tr>
|
||
|
</tbody></table>
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<void>
|
||
|
|
||
|
Promise that resolves when coverage is started.
|