<iframe> to show your users what their agent is doing.
Embedding
act/observe/extract loop, so users can watch the browser respond in real time.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
<iframe> to show your users what their agent is doing.
const liveUrl = await tab.liveViewUrl()
console.log(liveUrl)
// https://<box>-9223.<domain>/screencast?token=…&tab=…
live_url = tab.live_view_url()
print(live_url)
# https://<box>-9223.<domain>/screencast?token=…&tab=…
<iframe
src="https://<box>-9223.<domain>/screencast?token=…&tab=…"
style="width: 100%; aspect-ratio: 16 / 10; border: 0;"
></iframe>
act/observe/extract loop, so users can watch the browser respond in real time.
Was this page helpful?