Update README.md
This commit is contained in:
parent
67753aa454
commit
72bd08dde9
|
@ -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 :) ####
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue