Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface default.Debugger.EvaluateOnCallFrameRequest
import { type default } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.js";
const { EvaluateOnCallFrameRequest } = default.Debugger;

Properties

callFrameId: CallFrameId

Call frame identifier to evaluate on.

expression: string

Expression to evaluate.

optional
objectGroup: string

String object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup).

optional
includeCommandLineAPI: boolean

Specifies whether command line API should be available to the evaluated expression, defaults to false.

optional
silent: boolean

In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state.

optional
returnByValue: boolean

Whether the result is expected to be a JSON object that should be sent by value.

optional
generatePreview: boolean

Whether preview should be generated for the result.

optional
throwOnSideEffect: boolean

Whether to throw an exception if side effect cannot be ruled out during evaluation.

optional
timeout: Runtime.TimeDelta

Terminate execution after timing out (number of milliseconds).