Member Junction
    Preparing search index...

    The handle a IChromeContainerRunner.Acquire call returns: the CDP endpoint the shared adapter attaches to, the MJ-hosted viewer URL for human live-view, and the teardown hook for the container behind them.

    interface ChromeContainerHandle {
        CdpEndpoint: string;
        ViewerUrl: string;
        Release(): Promise<void>;
    }
    Index

    Properties

    Methods

    Properties

    CdpEndpoint: string

    The Chrome DevTools Protocol connect endpoint of the launched container (e.g. a ws://…/devtools/browser/… URL). The shared provider attaches to this over CDP.

    ViewerUrl: string

    The MJ-hosted, embeddable live-view URL whose page renders the inherited CDP screencast frames. Self-host has no first-party hosted live view; this is MJ's own viewer backed by the screencast.

    Methods