Skip to main content

CallFunctionOnParameterType

interface Runtime.CallFunctionOnParameterType

Properties Jump to heading

Declaration of the function to call.

Identifier of the object to call function on. Either objectId or executionContextId should be specified.

Call arguments. All call arguments must belong to the same JavaScript world as the target object.

optional
Jump to headingsilent: boolean | undefined

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

optional
Jump to headingreturnByValue: boolean | undefined

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

optional
Jump to headinggeneratePreview: boolean | undefined

Whether preview should be generated for the result.

optional
Jump to headinguserGesture: boolean | undefined

Whether execution should be treated as initiated by user in the UI.

optional
Jump to headingawaitPromise: boolean | undefined

Whether execution should await for resulting value and return once awaited promise is resolved.

Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified.

optional
Jump to headingobjectGroup: string | undefined

Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object.

Back to top