From f2210d252ddaaafdea7661e90d118abbd36a20dd Mon Sep 17 00:00:00 2001 From: Leon Date: Sun, 22 Dec 2019 14:16:34 +0100 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1c22a79..a5b88aa 100644 --- a/README.md +++ b/README.md @@ -7,17 +7,17 @@ Automatically downloads the driver binary and patches it. Not tested on Chrome higher than 79! -USAGE +## USAGE -### 1- by far the easiest +# 1- by far the easiest ```python from undetected_chromedriver import Chrome, ChromeOptions driver = Chrome() driver.get('https://distilnetworks.com') ``` -### 2- patches selenium module (before importing from selenium!) +# 2- patches selenium module (before importing from selenium!) ```python import undetected_chromedriver undetected_chromedriver.install() @@ -26,7 +26,7 @@ driver = Chrome() driver.get('https://distilnetworks.com') ```` -### 3 - Customized +# 3 - Customized ```python import undetected_chromedriver @@ -45,4 +45,4 @@ driver = Chrome(options=opts) driver.get('https://distilnetworks.com') ``` -### 4- a combination of function(s) from this module :) +# 4- a combination of function(s) from this module :)