Member Junction
    Preparing search index...

    The outcome of an autonomous, goal-driven browser run — either the computer-use loop (IRemoteBrowserSession.RunComputerUseGoal) or a backend's native AI control (IRemoteBrowserSession.InvokeNativeAIControl), unified by resolveControlStrategy.

    interface RemoteBrowserGoalResult {
        CurrentUrl?: string;
        Detail?: string;
        Status?: string;
        StepCount?: number;
        Strategy?: RemoteBrowserControlStrategy;
        Success: boolean;
    }
    Index

    Properties

    CurrentUrl?: string

    The page URL when the run ended, when known.

    Detail?: string

    Human-readable detail (judge feedback / error message).

    Status?: string

    A terminal status label (e.g. 'Completed', 'MaxStepsReached', 'Impossible', 'Error').

    StepCount?: number

    Number of perceive-act steps executed (computer-use strategy).

    Which control strategy executed the goal.

    Success: boolean

    Whether the goal was achieved.