mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
1.0 KiB
1.0 KiB
sidebar_label |
---|
Coverage.startJSCoverage |
Coverage.startJSCoverage() method
Signature:
class Coverage {
startJSCoverage(options?: JSCoverageOptions): Promise<void>;
}
Parameters
Parameter |
Type |
Description |
---|---|---|
options |
(Optional) Set of configurable options for coverage defaults to |
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 URL will start with debugger://VM
(unless a magic //# sourceURL comment is present, in which case that will the be URL).