-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
enhancementMaking things betterMaking things better
Description
Hi!
The actual problem is described here: https://stackoverflow.com/questions/78787332/selecting-default-search-engine-is-needed-for-chrome-version-127
So you need to make this small fix to work with the new chrome 127.
diff -rNu a/browser_launcher.py b/browser_launcher.py
--- a/browser_launcher.py 2024-07-25 08:26:34.821841698 +0300
+++ b/browser_launcher.py 2024-07-25 08:39:00.743068259 +0300
@@ -1666,6 +1666,7 @@
chrome_options.add_argument("--disable-prompt-on-repost")
chrome_options.add_argument("--dns-prefetch-disable")
chrome_options.add_argument("--disable-translate")
+ chrome_options.add_argument("--disable-search-engine-choice-screen")
if binary_location:
chrome_options.binary_location = binary_location
if not enable_3d_apis and not is_using_uc(undetectable, browser_name):
Thanks.
Metadata
Metadata
Assignees
Labels
enhancementMaking things betterMaking things better