from browser_use_sdk.v3 import AsyncBrowserUse
client = AsyncBrowserUse()
# 1. Create a session
session = await client.sessions.create()
print(f"Live view: {session.live_url}")
# 2. Agent does the first part
result = await client.run(
"Go to amazon.com and search for noise cancelling headphones",
session_id=session.id,
)
print(result.output)
# 3. Human opens live_url and picks a product
input("Press Enter after you've selected a product in the live view...")
# 4. Agent continues where the human left off
result = await client.run(
"Get the details of the selected product — name, price, and rating",
session_id=session.id,
)
print(result.output)
# Clean up
await client.sessions.stop(session.id)