puppeteer/new-docs/puppeteer.protocol.runtime.evaluaterequest.md
Johan Bay e89e264a16
feat(chromium): roll Chromium to r782078 (#6250)
This corresponds to Chromium 85.0.4182.0.

This roll includes: 
- Enable SameSiteByDefaultCookies and CookiesWithoutSameSiteMustBeSecure
   https://crrev.com/c/2231445
- [FlexNG] Enable FlexNG by default
   https://crrev.com/c/2216595

Closes #6151.
2020-07-20 17:17:06 +02:00

3.4 KiB

Home > puppeteer > Protocol > Runtime > EvaluateRequest

Protocol.Runtime.EvaluateRequest interface

Signature:

export interface EvaluateRequest 

Properties

Property Type Description
allowUnsafeEvalBlockedByCSP boolean The Content Security Policy (CSP) for the target might block 'unsafe-eval' which includes eval(), Function(), setTimeout() and setInterval() when called with non-callable arguments. This flag bypasses CSP for this evaluation and allows unsafe-eval. Defaults to true.
awaitPromise boolean Whether execution should await for resulting value and return once awaited promise is resolved.
contextId ExecutionContextId Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
disableBreaks boolean Disable breakpoints during execution.
expression string Expression to evaluate.
generatePreview boolean Whether preview should be generated for the result.
includeCommandLineAPI boolean Determines whether Command Line API should be available during the evaluation.
objectGroup string Symbolic group name that can be used to release multiple objects.
replMode boolean Setting this flag to true enables let re-declaration and top-level await. Note that let variables can only be re-declared if they originate from replMode themselves.
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. This implies disableBreaks below.
timeout TimeDelta Terminate execution after timing out (number of milliseconds).
userGesture boolean Whether execution should be treated as initiated by user in the UI.