Update README.md

This commit is contained in:
Leon 2019-12-22 14:47:41 +01:00 committed by GitHub
parent 67753aa454
commit 72bd08dde9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -12,7 +12,7 @@ Works only on python 3
pip install git+https://github.com/ultrafunkamsterdam/undetected-chromedriver.git pip install git+https://github.com/ultrafunkamsterdam/undetected-chromedriver.git
``` ```
## USAGE ## ## Usage ##
#### the easy way (recommended) #### #### the easy way (recommended) ####
@ -22,6 +22,7 @@ driver = Chrome()
driver.get('https://distilnetworks.com') driver.get('https://distilnetworks.com')
``` ```
#### patches selenium module #### #### patches selenium module ####
Needs to be done before importing from selenium package Needs to be done before importing from selenium package
@ -33,6 +34,7 @@ driver = Chrome()
driver.get('https://distilnetworks.com') driver.get('https://distilnetworks.com')
```` ````
#### the customized way #### #### the customized way ####
```python ```python
import undetected_chromedriver import undetected_chromedriver
@ -52,4 +54,7 @@ driver = Chrome(options=opts)
driver.get('https://distilnetworks.com') driver.get('https://distilnetworks.com')
``` ```
#### 4- a combination of function(s) from this module :) #### #### 4- a combination of function(s) from this module :) ####