> ## Documentation Index
> Fetch the complete documentation index at: https://skyvern.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# connect_to_cloud_browser_session

Connect to an existing cloud browser session by ID.

<CodeGroup>
  ```python Python theme={null}
  browser = await skyvern.connect_to_cloud_browser_session("pbs_abc123")
  page = await browser.get_working_page()
  ```

  ```typescript TypeScript theme={null}
  const browser = await skyvern.connectToCloudBrowserSession("pbs_abc123");
  const page = await browser.getWorkingPage();
  ```
</CodeGroup>

## Parameters

| Parameter                                 | Type             | Required | Description                          |
| ----------------------------------------- | ---------------- | -------- | ------------------------------------ |
| `browser_session_id` / `browserSessionId` | `str` / `string` | Yes      | The ID of the cloud browser session. |

## Returns `SkyvernBrowser`
