Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions browser-use-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "3.4.2"
description = "Python SDK for the Browser Use cloud API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = ["httpx>=0.24", "pydantic>=2.0"]

[project.optional-dependencies]
Expand All @@ -25,7 +25,7 @@ markers = [
]

[tool.pyright]
pythonVersion = "3.9"
pythonVersion = "3.10"
typeCheckingMode = "basic"
include = ["src", "tests", "examples"]

Expand Down
78 changes: 10 additions & 68 deletions browser-use-python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/cloud/browser/playwright-puppeteer-selenium.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ await browser.close();

### Selenium

Selenium requires a local WebSocket proxy to connect to Browser Use's remote CDP endpoint. Use [selenium-wire](https://github.com/wkeeling/selenium-wire) or connect through Playwright's CDP bridge instead:
Selenium does not support remote CDP over WebSocket directly. Connect through Playwright's CDP bridge instead:

```python
from playwright.sync_api import sync_playwright
Expand Down
Loading