Browser Use: AI Controls Your Browser for Task Automation
Make websites accessible for AI agents. Automate tasks online — fill forms, extract data, compare products. #1 on Odysseys leaderboard.
AI Can Now Use the Web Like You#
Want AI to automatically fill forms, extract data, or compare products on the web? Browser Use lets AI agents use a web browser like humans do — open pages, click buttons, type, fill forms.
[!TIP] Browser Use is #1 on the Odysseys leaderboard with 87.4% average, ahead of computer-use agents from OpenAI, Anthropic, Google, and Microsoft.
What Is Browser Use?#
A Python library and CLI that lets AI:
| Capability | Example |
|---|---|
| 📋 Fill Forms | Auto-fill job applications |
| 🍎 Extract Data | Extract structured data from websites |
| 🔍 Compare | Compare products, laptops |
| 📹 Upload | Upload videos to YouTube |
Quick Start#
Install
uv add browser-usebashimport asyncio
from browser_use import Agent, ChatBrowserUse
async def main():
agent = Agent(
task="Find the number of stars of the browser-use repo",
llm=ChatBrowserUse(model='openai/gpt-5.5'),
)
history = await agent.run()
asyncio.run(main())python[!NOTE] Browser Use also has a Cloud version with stealth browsers, proxy rotation, and CAPTCHA solving for production use.
Conclusion#
Browser Use is changing how AI interacts with the web. From needing manual human operation, AI can now complete tasks online autonomously.
🔗 Repository: github.com/browser-use/browser-use ↗