diff --git a/lncrawl/webdriver/local.py b/lncrawl/webdriver/local.py index a5cabcc76..6c8cf5166 100644 --- a/lncrawl/webdriver/local.py +++ b/lncrawl/webdriver/local.py @@ -74,9 +74,9 @@ def create_local( # options.add_argument("--disable-dev-shm-usage") # Add capabilities - options.set_capability("quietExceptions", True) + #options.set_capability("quietExceptions", True) options.set_capability("acceptInsecureCerts", True) - options.set_capability("useAutomationExtension", False) + #options.set_capability("useAutomationExtension", False) # Configure window behavior if headless: diff --git a/lncrawl/webdriver/remote.py b/lncrawl/webdriver/remote.py index 644cf7991..faf26f446 100644 --- a/lncrawl/webdriver/remote.py +++ b/lncrawl/webdriver/remote.py @@ -52,9 +52,9 @@ def create_remote( options.add_argument("--no-first-run") # Add capabilities - options.set_capability("quietExceptions", True) + #options.set_capability("quietExceptions", True) options.set_capability("acceptInsecureCerts", True) - options.set_capability("useAutomationExtension", False) + #options.set_capability("useAutomationExtension", False) # Chrome specific experimental options options.accept_insecure_certs = True