mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
2.3 KiB
2.3 KiB
Home > puppeteer > Protocol > Debugger > EvaluateOnCallFrameRequest
Protocol.Debugger.EvaluateOnCallFrameRequest interface
Signature:
export interface EvaluateOnCallFrameRequest
Properties
Property | Type | Description |
---|---|---|
callFrameId | CallFrameId | Call frame identifier to evaluate on. |
expression | string | Expression to evaluate. |
generatePreview | boolean | Whether preview should be generated for the result. |
includeCommandLineAPI | boolean | Specifies whether command line API should be available to the evaluated expression, defaults to false. |
objectGroup | string | String object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup ). |
returnByValue | boolean | Whether the result is expected to be a JSON object that should be sent by value. |
silent | boolean | In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. |
throwOnSideEffect | boolean | Whether to throw an exception if side effect cannot be ruled out during evaluation. |
timeout | Runtime.TimeDelta | Terminate execution after timing out (number of milliseconds). |