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

# Human in the loop

> Open the live browser, take over, then continue the same session.

Use a human checkpoint for approvals, authentication, payments, or review.
After a run stops, get its `live_view_url` from the `browser.ready` event:

<CodeGroup>
  ```python Python theme={null}
  from browser_use_sdk.v4 import BrowserUse

  client = BrowserUse()
  run = client.runs.create(
      "Open the login page and stop for human review"
  )
  run = client.runs.wait_for_completion(run.id)

  events = client.runs.events(run.id, limit=100)
  ready = next(
      event for event in events.events
      if event.type == "browser.ready"
  )
  print(ready.data["live_view_url"])

  # After the human finishes:
  next_run = client.runs.create(
      "Continue from the current page",
      session_id=run.session_id,
  )
  ```

  ```typescript TypeScript theme={null}
  import { BrowserUse } from "browser-use-sdk/v4";

  const client = new BrowserUse();
  const run = await client.runs.create({
    task: "Open the login page and stop for human review",
    model: "grok-4.5",
  });
  await client.runs.waitForCompletion(run.id);

  const events = await client.runs.events(run.id, {
    limit: 100,
  });
  const ready = events.events.find(
    (event) => event.type === "browser.ready",
  );
  console.log(ready?.data.live_view_url);

  // After the human finishes:
  const nextRun = await client.runs.create({
    task: "Continue from the current page",
    model: "grok-4.5",
    sessionId: run.sessionId,
  });
  ```
</CodeGroup>

The same session preserves the conversation and workspace and reuses the live
browser while it is available. Treat live-view URLs as credentials.
