Member Junction
    Preparing search index...

    The minimal Steel service surface the import('./steel-remote-browser').SteelRemoteBrowser driver depends on. Production binds this to the real steel-sdk; tests inject a FakeSteelClient.

    interface ISteelClient {
        CreateSession(
            options: SteelCreateSessionOptions,
        ): Promise<SteelSessionHandles>;
        ReleaseSession(sessionId: string): Promise<void>;
    }
    Index

    Methods

    • Releases a Steel session, freeing the backing browser. Should be idempotent / non-throwing for an already-released session so teardown is safe to run more than once.

      Parameters

      • sessionId: string

        The Steel session id to release.

      Returns Promise<void>