├── .coveragerc ├── .github ├── FUNDING.yml ├── set_win_reg_keys.ps1 └── workflows │ ├── deploy.yml │ ├── test.yml │ └── test_xdist.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Pipfile ├── README.md ├── pyproject.toml ├── release-process.rst ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── test_brave_driver.py ├── test_chrome_driver.py ├── test_chromium_driver.py ├── test_custom_http_client.py ├── test_custom_logger.py ├── test_downloader.py ├── test_edge_driver.py ├── test_firefox_manager.py ├── test_ie_driver.py ├── test_opera_manager.py ├── test_silent_global_logs.py └── test_utils.py ├── tests_negative ├── __init__.py └── test_browsers_not_installed.py ├── tests_xdist ├── __init__.py ├── conftest.py ├── test_cuncurent_1.py ├── test_cuncurent_2.py └── test_cuncurent_3.py ├── uv.lock └── webdriver_manager ├── __init__.py ├── chrome.py ├── core ├── __init__.py ├── archive.py ├── config.py ├── constants.py ├── download_manager.py ├── driver.py ├── driver_cache.py ├── file_manager.py ├── http.py ├── logger.py ├── manager.py ├── os_manager.py └── utils.py ├── drivers ├── __init__.py ├── chrome.py ├── edge.py ├── firefox.py ├── ie.py └── opera.py ├── firefox.py ├── microsoft.py ├── opera.py └── py.typed /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/set_win_reg_keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/.github/set_win_reg_keys.ps1 -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test_xdist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/.github/workflows/test_xdist.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release-process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/release-process.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_brave_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_brave_driver.py -------------------------------------------------------------------------------- /tests/test_chrome_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_chrome_driver.py -------------------------------------------------------------------------------- /tests/test_chromium_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_chromium_driver.py -------------------------------------------------------------------------------- /tests/test_custom_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_custom_http_client.py -------------------------------------------------------------------------------- /tests/test_custom_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_custom_logger.py -------------------------------------------------------------------------------- /tests/test_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_downloader.py -------------------------------------------------------------------------------- /tests/test_edge_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_edge_driver.py -------------------------------------------------------------------------------- /tests/test_firefox_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_firefox_manager.py -------------------------------------------------------------------------------- /tests/test_ie_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_ie_driver.py -------------------------------------------------------------------------------- /tests/test_opera_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_opera_manager.py -------------------------------------------------------------------------------- /tests/test_silent_global_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_silent_global_logs.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests_negative/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests_negative/test_browsers_not_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests_negative/test_browsers_not_installed.py -------------------------------------------------------------------------------- /tests_xdist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests_xdist/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests_xdist/conftest.py -------------------------------------------------------------------------------- /tests_xdist/test_cuncurent_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests_xdist/test_cuncurent_1.py -------------------------------------------------------------------------------- /tests_xdist/test_cuncurent_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests_xdist/test_cuncurent_2.py -------------------------------------------------------------------------------- /tests_xdist/test_cuncurent_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/tests_xdist/test_cuncurent_3.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/uv.lock -------------------------------------------------------------------------------- /webdriver_manager/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "4.0.2" 2 | -------------------------------------------------------------------------------- /webdriver_manager/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/chrome.py -------------------------------------------------------------------------------- /webdriver_manager/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webdriver_manager/core/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/archive.py -------------------------------------------------------------------------------- /webdriver_manager/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/config.py -------------------------------------------------------------------------------- /webdriver_manager/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/constants.py -------------------------------------------------------------------------------- /webdriver_manager/core/download_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/download_manager.py -------------------------------------------------------------------------------- /webdriver_manager/core/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/driver.py -------------------------------------------------------------------------------- /webdriver_manager/core/driver_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/driver_cache.py -------------------------------------------------------------------------------- /webdriver_manager/core/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/file_manager.py -------------------------------------------------------------------------------- /webdriver_manager/core/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/http.py -------------------------------------------------------------------------------- /webdriver_manager/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/logger.py -------------------------------------------------------------------------------- /webdriver_manager/core/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/manager.py -------------------------------------------------------------------------------- /webdriver_manager/core/os_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/os_manager.py -------------------------------------------------------------------------------- /webdriver_manager/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/core/utils.py -------------------------------------------------------------------------------- /webdriver_manager/drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webdriver_manager/drivers/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/drivers/chrome.py -------------------------------------------------------------------------------- /webdriver_manager/drivers/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/drivers/edge.py -------------------------------------------------------------------------------- /webdriver_manager/drivers/firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/drivers/firefox.py -------------------------------------------------------------------------------- /webdriver_manager/drivers/ie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/drivers/ie.py -------------------------------------------------------------------------------- /webdriver_manager/drivers/opera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/drivers/opera.py -------------------------------------------------------------------------------- /webdriver_manager/firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/firefox.py -------------------------------------------------------------------------------- /webdriver_manager/microsoft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/microsoft.py -------------------------------------------------------------------------------- /webdriver_manager/opera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyPirogov/webdriver_manager/HEAD/webdriver_manager/opera.py -------------------------------------------------------------------------------- /webdriver_manager/py.typed: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------