AgentOS Extensions API - v1.0.3
    Preparing search index...

    Result of a navigation operation

    interface NavigationResult {
        consoleMessages?: string[];
        html?: string;
        links?: { href: string; text: string }[];
        loadTime: number;
        status: number;
        text?: string;
        title: string;
        url: string;
    }
    Index

    Properties

    consoleMessages?: string[]

    Any console messages

    html?: string

    Full HTML content

    links?: { href: string; text: string }[]

    Links found on the page

    loadTime: number

    Time taken to load (ms)

    status: number

    HTTP status code

    text?: string

    Extracted text content

    title: string

    Page title

    url: string

    Final URL after any redirects