mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
438 B
Markdown
24 lines
438 B
Markdown
---
|
|
sidebar_label: Coverage.stopCSSCoverage
|
|
---
|
|
|
|
# Coverage.stopCSSCoverage() method
|
|
|
|
Promise that resolves to the array of coverage reports for all stylesheets.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Coverage {
|
|
stopCSSCoverage(): Promise<CoverageEntry[]>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<[CoverageEntry](./puppeteer.coverageentry.md)\[\]>
|
|
|
|
## Remarks
|
|
|
|
CSS Coverage doesn't include dynamically injected style tags without sourceURLs.
|