@runloop/api-client - v1.4.0
    Preparing search index...

    Interface BrowserView

    A Browser represents a managed implementation of a browser like Chromiumon top of Devboxes. It includes the tunnel to the live screen and the underlying DevboxView.

    interface BrowserView {
        connection_url: string;
        devbox: DevboxView;
        live_view_url: string;
    }
    Index

    Properties

    connection_url: string

    The url to enable remote connection from browser automation tools like playwright.

    devbox: DevboxView

    The underlying devbox the browser setup is running on.

    live_view_url: string

    The url to view the browser window and enable user interactions via their own browser. You can control the interactivity of the browser by adding or removing 'view_only' query parameter. view_only=1 will allow interaction and view_only=0 will disable interaction.