Update README.md

This commit is contained in:
Leon 2020-06-15 19:23:26 +02:00 committed by GitHub
parent f8ac6c1039
commit 71cd7db89c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -23,9 +23,15 @@ To prevent unnecessary hair-pulling and issue-rasing, please mind the **[importa
#### the easy way (recommended) ####
```python
from undetected_chromedriver import Chrome, ChromeOptions
driver = Chrome()
import undetected_chromedriver as uc
driver = uc.Chrome()
driver.get('https://distilnetworks.com')
# To target specific version
import undetected_chromedriver as uc
uc.TARGET_VERSION = 84
driver = uc.Chrome()
```