import { type Protocol } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { CallFunctionOnRequest } = Protocol.Runtime;
Properties
optional
objectId: RemoteObjectIdIdentifier of the object to call function on. Either objectId or executionContextId should be specified.
optional
arguments: CallArgument[]Call arguments. All call arguments must belong to the same JavaScript world as the target object.
In silent mode exceptions thrown during evaluation are not reported and do not pause
execution. Overrides setPauseOnException
state.
Whether the result is expected to be a JSON object which should be sent by value.
Whether execution should await
for resulting value and return once awaited promise is
resolved.
optional
executionContextId: ExecutionContextIdSpecifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified.