Class CallArgument
java.lang.Object
org.openqa.selenium.devtools.v123.runtime.model.CallArgument
Represents function call argument. Either remote object id `objectId`, primitive `value`,
unserializable primitive value or neither of (for undefined) them should be specified.
-
Constructor Summary
ConstructorsConstructorDescriptionCallArgument
(Optional<Object> value, Optional<UnserializableValue> unserializableValue, Optional<RemoteObjectId> objectId) -
Method Summary
Modifier and TypeMethodDescriptionRemote object handle.Primitive value which can not be JSON-stringified.getValue()
Primitive value or serializable javascript object.
-
Constructor Details
-
CallArgument
public CallArgument(Optional<Object> value, Optional<UnserializableValue> unserializableValue, Optional<RemoteObjectId> objectId)
-
-
Method Details
-
getValue
Primitive value or serializable javascript object. -
getUnserializableValue
Primitive value which can not be JSON-stringified. -
getObjectId
Remote object handle.
-