mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: remove docusaurus metadata from README.md (#8624)
This commit is contained in:
@@ -1,29 +1,27 @@
|
||||
---
|
||||
sidebar_label: Coverage.startJSCoverage
|
||||
---
|
||||
|
||||
# Coverage.startJSCoverage() method
|
||||
|
||||
**Signature:**
|
||||
|
||||
```typescript
|
||||
class Coverage {
|
||||
startJSCoverage(options?: JSCoverageOptions): Promise<void>;
|
||||
}
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --------- | ----------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| options | [JSCoverageOptions](./puppeteer.jscoverageoptions.md) | <i>(Optional)</i> Set of configurable options for coverage defaults to <code>resetOnNavigation : true, reportAnonymousScripts : false</code> |
|
||||
|
||||
**Returns:**
|
||||
|
||||
Promise<void>
|
||||
|
||||
Promise that resolves when coverage is started.
|
||||
|
||||
## Remarks
|
||||
|
||||
Anonymous scripts are ones that don't have an associated url. These are scripts that are dynamically created on the page using `eval` or `new Function`. If `reportAnonymousScripts` is set to `true`, anonymous scripts will have `pptr://__puppeteer_evaluation_script__` as their URL.
|
||||
---
|
||||
sidebar_label: Coverage.startJSCoverage
|
||||
---
|
||||
# Coverage.startJSCoverage() method
|
||||
|
||||
**Signature:**
|
||||
|
||||
```typescript
|
||||
class Coverage {startJSCoverage(options?: JSCoverageOptions): Promise<void>;}
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| options | [JSCoverageOptions](./puppeteer.jscoverageoptions.md) | <i>(Optional)</i> Set of configurable options for coverage defaults to <code>resetOnNavigation : true, reportAnonymousScripts : false</code> |
|
||||
|
||||
**Returns:**
|
||||
|
||||
Promise<void>
|
||||
|
||||
Promise that resolves when coverage is started.
|
||||
|
||||
## Remarks
|
||||
|
||||
Anonymous scripts are ones that don't have an associated url. These are scripts that are dynamically created on the page using `eval` or `new Function`. If `reportAnonymousScripts` is set to `true`, anonymous scripts will have `pptr://__puppeteer_evaluation_script__` as their URL.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user