@wpazderski/playwright-utils
    Preparing search index...

    Serializable data returned by convertDataToSerializable that can be passed between Node.js and Web environments (and vice versa) through e.g. page.evaluate. To convert data back to the original format, use convertDataFromSerializable.

    interface WrappedSerializableData {
        data: SerializableData;
        functions: string[];
        objects: SerializableArrayOrObject[];
        symbols: string[];
    }
    Index

    Properties

    The data that has been serialized.

    functions: string[]

    Functions represented as strings.

    Objects represented as serializable data.

    symbols: string[]

    Symbols represented as strings.