From b0029c6594045cb79eb916eca3549192640d1e1d Mon Sep 17 00:00:00 2001 From: Leon Date: Sun, 22 Dec 2019 14:19:55 +0100 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ac8245b..6965198 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,16 @@ Not tested on Chrome higher than 79! ## USAGE ## -#### 1- by far the easiest #### +#### the easy way (recommended) #### ```python from undetected_chromedriver import Chrome, ChromeOptions driver = Chrome() driver.get('https://distilnetworks.com') ``` -#### 2- patches selenium module (before importing from selenium!) #### +#### patches selenium module #### +Needs to be done before importing from selenium package + ```python import undetected_chromedriver undetected_chromedriver.install() @@ -26,7 +28,7 @@ driver = Chrome() driver.get('https://distilnetworks.com') ```` -#### 3 - Customized #### +#### the customized way #### ```python import undetected_chromedriver