class Serializable<T>

Defines an object that can be asynchronously serialized to its WebDriver wire representation.

new Serializable()

Parameters
None.

Instance Methods

serialize()code ยป

Returns either this instance's serialized represention, if immediately available, or a promise for its serialized representation. This function is conceptually equivalent to objects that have a toJSON() property, except the serialize() result may be a promise or an object containing a promise (which are not directly JSON friendly).

Returns
(T|IThenable<T>)

This instance's serialized wire format.