From 0e0659d811fd8e6b0b0fc60e7e601a0ed3941cb4 Mon Sep 17 00:00:00 2001 From: Leon Date: Thu, 17 Dec 2020 15:06:51 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c4325a1..599cb76 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ https://github.com/ultrafunkamsterdam/undetected-chromedriver Optimized Selenium Chromedriver patch which does not trigger anti-bot services like Distill Network / Imperva / DataDome / Botprotect.io Automatically downloads the driver binary and patches it. -* **Tested on version 75,76,77,78,79,80,81,83,84,85,86,87,88** -* **patching also works on MS Edge (chromium-based) webdriver binary** -* **console logging is disabled by default. to enable: pass enable_console_log=True to the Chrome constructor** +* **Tested from version 80 until current beta * +* **Patching also works on MS Edge (chromium-based) webdriver binary** +* **Python 3.6++** ## Installation ## ``` @@ -16,7 +16,7 @@ pip install undetected-chromedriver ## Usage ## -To prevent unnecessary hair-pulling and issue-rasing, please mind the **[important note at the end of this document](#important-note) .** +To prevent unnecessary hair-pulling and issue-raising, please mind the **[important note at the end of this document](#important-note) .**
@@ -57,13 +57,13 @@ uc.TARGET_VERSION = 78 # or specify your own chromedriver binary (why you would need this, i don't know) -undetected_chromedriver.install( +uc.install( executable_path='c:/users/user1/chromedriver.exe', ) opts = uc.ChromeOptions() opts.add_argument(f'--proxy-server=socks5://127.0.0.1:9050') -driver = uc.Chrome(options=opts, enable_console_log=True) +driver = uc.Chrome(options=opts) driver.get('https://distilnetworks.com') ```