Table of Contents

Class CallArgument

Namespace
Selenium.WebDriver.BiDi.Cdp.Runtime
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

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

public sealed record CallArgument : IEquatable<CallArgument>
Inheritance
CallArgument
Implements
Inherited Members

Constructors

CallArgument()

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

public CallArgument()

Properties

ObjectId

Remote object handle.

public RemoteObjectId? ObjectId { get; init; }

Property Value

RemoteObjectId

UnserializableValue

Primitive value which can not be JSON-stringified.

public UnserializableValue? UnserializableValue { get; init; }

Property Value

UnserializableValue

Value

Primitive value or serializable javascript object.

public JsonElement? Value { get; init; }

Property Value

JsonElement?