From 4e551d8c9ee60da69b0a5bc5a581e96677ba0115 Mon Sep 17 00:00:00 2001 From: dem4ply Date: Sun, 7 Jan 2024 21:31:46 -0600 Subject: [PATCH] add chromium in the find_chrome_executable for windows --- undetected_chromedriver/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/undetected_chromedriver/__init__.py b/undetected_chromedriver/__init__.py index 2d78589..76fb2f3 100644 --- a/undetected_chromedriver/__init__.py +++ b/undetected_chromedriver/__init__.py @@ -890,6 +890,7 @@ def find_chrome_executable(): if item is not None: for subitem in ( "Google/Chrome/Application", + "Chromium/Application", ): candidates.add(os.sep.join((item, subitem, "chrome.exe"))) for candidate in candidates: