Wirebrowser Automation Script API Referece
    Preparing search index...

    Interface LiveObjectSearchQuery

    Configuration object for live object search.

    interface LiveObjectSearchQuery {
        classSearch?: SearchQuery;
        osAlpha?: number;
        osEnabled?: boolean;
        osIncludeValues?: boolean;
        osObject?: any;
        osThreshold?: number;
        propertySearch?: SearchQuery;
        root?: string;
        searchMode: LiveObjectSearchMode;
        valueSearch?: SearchQuery;
    }

    Hierarchy (View Summary)

    Index

    Properties

    classSearch?: SearchQuery

    Search keyword applied to object class / constructor names.

    osAlpha?: number

    Alpha coefficient (0-1) used to balance structural vs value similarity.

    osEnabled?: boolean

    Enables the object similarity engine.

    osIncludeValues?: boolean

    Whether to include object values in similarity computation.

    osObject?: any

    Target object used as reference for similarity matching.

    osThreshold?: number

    Similarity threshold (0-1, higher means stricter matching).

    propertySearch?: SearchQuery

    Search keyword applied to object property names.

    root?: string

    Root object identifier (e.g., window.obj1) used when searchMode is "byroot".

    Defines the search scope.

    valueSearch?: SearchQuery

    Search keyword applied to object values.