[build-system]
requires = ["setuptools", "setuptools-rust"]
build-backend = "setuptools.build_meta"
[project]
name = "selenium"
version = "4.41.0.202601181916"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
description = "Official Python bindings for Selenium WebDriver."
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"certifi>=2026.1.4",
"trio>=0.31.0,<1.0",
"trio-websocket>=0.12.2,<1.0",
"typing_extensions>=4.15.0,<5.0",
"urllib3[socks]>=2.6.3,<3.0",
"websocket-client>=1.8.0,<2.0",
]
[project.urls]
homepage = "https://www.selenium.dev"
source = "https://github.com/SeleniumHQ/selenium/tree/trunk/py"
download = "https://pypi.org/project/selenium"
changelog = "https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES"
documentation = "https://www.selenium.dev/documentation/webdriver"
issues = "https://github.com/SeleniumHQ/selenium/issues"
[dependency-groups]
lint = [
"ruff==0.14.14",
]
validate = [
"validate-pyproject==0.24.1",
"packaging==25.0",
]
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
include = ["selenium*"]
exclude = ["test*"]
namespaces = true
[[tool.setuptools-rust.ext-modules]]
target = "selenium.webdriver.common.selenium-manager"
binding = "Exec"
[tool.setuptools.package-data]
"*" = [
"*.py",
"*.rst",
"*.json",
"*.xpi",
"*.js",
"py.typed",
"prune*",
"selenium.egg-info*",
"selenium-manager",
"selenium-manager.exe",
"CHANGES",
"LICENSE",
"NOTICE",
]
[tool.pytest]
console_output_style = "progress"
faulthandler_timeout = "60"
log_cli = true
trio_mode = true
addopts = ["-s", "--tb=no"]
filterwarnings = [
"ignore::DeprecationWarning",
]
markers = [
"xfail_chrome: Tests expected to fail in Chrome",
"xfail_edge: Tests expected to fail in Edge",
"xfail_firefox: Tests expected to fail in Firefox",
"xfail_ie: Tests expected to fail in IE",
"xfail_remote: Tests expected to fail with Remote webdriver",
"xfail_safari: Tests expected to fail in Safari",
"xfail_webkitgtk: Tests expected to fail in WebKitGTK",
"xfail_wpewebkit: Tests expected to fail in WPEWebKit",
"no_driver_after_test: If there are no drivers after the test it will create a new one.",
"needs_fresh_driver: Mark tests that may need a fresh driver instance for proper isolation."
]
python_files = ["test_*.py", "*_test.py", "*_tests.py"]
testpaths = ["test"]
[tool.mypy]
exclude = "selenium/webdriver/common/devtools"
warn_unused_configs = true
disallow_subclassing_any = true
disallow_any_generics = false
disallow_untyped_calls = false
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = false
disallow_untyped_decorators = false
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = false
warn_unreachable = false
[tool.ruff]
extend-exclude = [
"selenium/webdriver/common/devtools/",
]
line-length = 120
respect-gitignore = true
target-version = "py310"
[tool.ruff.lint]
extend-select = ["D", "E", "F", "I", "PT", "UP", "RUF", "TID252"]
fixable = ["ALL"]
extend-ignore = [
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D107",
"D212",
"PT011",
"PT012",
"RUF005",
"RUF012",
"RUF059",
]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 120
[tool.ruff.lint.isort]
known-first-party = ["selenium", "test"]
known-third-party = []
known-local-folder = ["conftest"]
[tool.ruff.lint.pydocstyle]
convention = "google"