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

    Represents a reference to a function, object, or symbol. It contains the type of the reference and an identifier that can be used to retrieve the original value.

    interface SerializableRef {
        id: number;
        type: "symbol" | "object" | "function";
    }
    Index

    Properties

    Properties

    id: number

    The identifier that can be used to retrieve the original value. It is an index in the corresponding array of non-serializable values.

    type: "symbol" | "object" | "function"

    The type of the reference.