f07ad2c661
This PR updates the docs regarding configuring puppeteer. In addition, some changes have been made to the documentation generator to show default values on the documentation site. Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
26 lines
859 B
Markdown
26 lines
859 B
Markdown
---
|
|
sidebar_label: Coverage.startCSSCoverage
|
|
---
|
|
|
|
# Coverage.startCSSCoverage() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Coverage {
|
|
startCSSCoverage(options?: CSSCoverageOptions): Promise<void>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
|
|
| options | [CSSCoverageOptions](./puppeteer.csscoverageoptions.md) | <i>(Optional)</i> Set of configurable options for coverage, defaults to <code>resetOnNavigation : true</code> |
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|
|
|
|
Promise that resolves when coverage is started.
|