Member Junction
    Preparing search index...

    The outcome of executing a RemoteBrowserAction (or IRemoteBrowserSession.Navigate).

    interface RemoteBrowserActionResult {
        CurrentUrl?: string;
        Detail?: string;
        Success: boolean;
    }
    Index

    Properties

    CurrentUrl?: string

    The page URL after the action, when known.

    Detail?: string

    Optional human-readable detail (an error message on failure, a note on success).

    Success: boolean

    Whether the action completed successfully.