diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 04200b6c..a2d6c6fa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,10 +1,29 @@ name: "Tests" on: push: - + paths-ignore: + - CHANGELOG.md + - README.md + - LICESNSE.txt + - release-process.rst + - .gitignore + - .coveragerc + - .github/workflows/deploy.yml + - .github/workflows/codeql-analysis.yml + - .github/workflows/FUNDING.yml pull_request: branches: - master + paths-ignore: + - CHANGELOG.md + - README.md + - LICESNSE.txt + - release-process.rst + - .gitignore + - .coveragerc + - .github/workflows/deploy.yml + - .github/workflows/codeql-analysis.yml + - .github/workflows/FUNDING.yml jobs: test: diff --git a/README.md b/README.md index 83db2fa8..49e89f08 100644 --- a/README.md +++ b/README.md @@ -229,6 +229,12 @@ import os os.environ['WDM_SSL_VERIFY'] = '0' ``` +### `version` +Specify the version of webdriver you need. And webdriver-manager will download it from sources for your os. +```python +ChromeDriverManager(version="2.26").install() +``` + ### `cache_valid_range` Driver cache by default is valid for 1 day. You are able to change this value using constructor parameter: