puppeteer/new-docs/puppeteer.protocol.runtime.callargument.md
2020-07-13 14:01:35 +01:00

1.2 KiB

Home > puppeteer > Protocol > Runtime > CallArgument

Protocol.Runtime.CallArgument interface

Represents function call argument. Either remote object id objectId, primitive value, unserializable primitive value or neither of (for undefined) them should be specified.

Signature:

export interface CallArgument 

Properties

Property Type Description
objectId RemoteObjectId Remote object handle.
unserializableValue UnserializableValue Primitive value which can not be JSON-stringified.
value any Primitive value or serializable javascript object.