OpenClaw agents can chat, execute code, and manage files. With Browser Use, they get the best browsing infrastructure — anti-detect profiles, CAPTCHA solving, proxies in 195+ countries, and secure credential management.
Each agent session runs in an isolated browser profile with unique fingerprints — canvas, WebGL, timezone, fonts, and more. Your automations look like real users, not bots.
from browser_use import Agent, Browser
from browser_use.browser.profile import BrowserProfile
profile = BrowserProfile(
fingerprint="randomized",
timezone="America/New_York",
locale="en-US",
)
browser = Browser(profile=profile)
agent = Agent(browser=browser)reCAPTCHA, hCaptcha, Turnstile — handled automatically. Browser Use solves challenges in the background so your agents never get stuck on verification screens.
from browser_use import Agent, Browser
from browser_use.browser.config import BrowserConfig
config = BrowserConfig(
captcha_solving=True,
# Supports reCAPTCHA v2/v3,
# hCaptcha, Turnstile
)
browser = Browser(config=config)
agent = Agent(browser=browser)
await agent.run("Sign up on example.com")Route agent traffic through residential and mobile proxies in 195+ countries. Target any geography, avoid IP bans, and maintain high-reputation sessions across runs.
from browser_use import Agent, Browser
from browser_use.browser.config import BrowserConfig
config = BrowserConfig(
proxy={
"server": "geo.browser-use.com:3000",
"country": "US",
"type": "residential",
}
)
browser = Browser(config=config)
agent = Agent(browser=browser)Agents can authenticate on websites without exposing passwords in plaintext. Credentials are injected securely at the browser level — never visible in agent logs or LLM context.
from browser_use import Agent, Browser
from browser_use.browser.config import BrowserConfig
config = BrowserConfig(
credentials=[{
"domain": "app.example.com",
"username": "agent@company.com",
# Injected securely, never
# exposed to the LLM
}]
)
browser = Browser(config=config)
agent = Agent(browser=browser)
await agent.run("Log into the dashboard")Keep cookies, localStorage, and auth state across agent runs. Your OpenClaw agents can resume exactly where they left off — no re-login, no lost state.
from browser_use import Agent, Browser
from browser_use.browser.config import BrowserConfig
config = BrowserConfig(
session_id="openclaw-agent-01",
persist_state=True,
# Cookies, localStorage, and
# auth tokens survive restarts
)
browser = Browser(config=config)
agent = Agent(browser=browser)Browser Use patches every known bot detection vector — navigator flags, WebDriver properties, headless indicators, and behavioral analysis. Sites see a real human browser.
from browser_use import Agent, Browser
from browser_use.browser.config import BrowserConfig
config = BrowserConfig(
stealth_mode=True,
# Patches: navigator.webdriver,
# chrome.runtime, permissions,
# plugins, languages, platform
)
browser = Browser(config=config)
agent = Agent(browser=browser)
await agent.run("Scrape competitor pricing")The OpenClaw ecosystem has exploded — 247K+ GitHub stars, 5,400+ community skills, and hundreds of startups building autonomous agents. Browser Use is the browsing infrastructure they rely on.
Agents that prospect, fill forms, and negotiate across dealer websites — saving thousands per deal.
Automated publishing, keyword research, and competitor monitoring at scale with stealth browsing.
Extract structured data from any website, handle authentication, and feed it into your product.
Continuous testing and uptime monitoring using real browser sessions across geographies.
from browser_use import Agent, Browser
from browser_use.browser.config import BrowserConfig
# Configure Browser Use with stealth + proxy
config = BrowserConfig(
stealth_mode=True,
captcha_solving=True,
proxy={"country": "US", "type": "residential"},
)
# Create the agent
browser = Browser(config=config)
agent = Agent(
task="Find the best flights to Tokyo next week",
browser=browser,
)
# Run it
result = await agent.run()
print(result)Get started with Browser Use today — free tier available, no credit card required.
Get StartedCookie Preferences
We use cookies to analyze site traffic and optimize your experience. Privacy Policy