From 76f136721b34373c110f89b20cb51557d6df59ec Mon Sep 17 00:00:00 2001 From: Leon Date: Sun, 13 Sep 2020 11:44:38 +0200 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2960b45..d986c65 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,22 @@ https://github.com/ultrafunkamsterdam/undetected-chromedriver -Optimized Selenium Chromedriver patch which does not trigger anti-bot services like Distill Network. +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** * **patching also works on MS Edge (chromium-based) webdriver binary** +## New ## + +By default, the console log function is disabled to prevent certain detections. +Until a cleaner solution is found, use the following to manually enable it + +```python +import undetected_chromedriver as uc +driver = uc.Chrome(enable_console_log=True) +``` ## Installation ## ```