From 2485d8fe206abd418ba9a5034cbbebf561061fb5 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Thu, 16 Nov 2023 18:56:48 -0500 Subject: [PATCH 1/2] Hide the "Find your downloads here" bubble on Chrome --- seleniumbase/core/browser_launcher.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/seleniumbase/core/browser_launcher.py b/seleniumbase/core/browser_launcher.py index d354dff5d72..367b77fd69a 100644 --- a/seleniumbase/core/browser_launcher.py +++ b/seleniumbase/core/browser_launcher.py @@ -1094,12 +1094,13 @@ def _set_chrome_options( if user_data_dir: chrome_options.add_argument( "--disable-features=OptimizationHintsFetching,Translate," - "OptimizationTargetPrediction,PrivacySandboxSettings4" + "OptimizationTargetPrediction,PrivacySandboxSettings4," + "DownloadBubble,DownloadBubbleV2" ) else: chrome_options.add_argument( "--disable-features=OptimizationHintsFetching,Translate," - "OptimizationTargetPrediction" + "OptimizationTargetPrediction,DownloadBubble,DownloadBubbleV2" ) if ( is_using_uc(undetectable, browser_name) From 1141c11a78f8bb4f282dfd046bd75ac3056db381 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Thu, 16 Nov 2023 18:57:23 -0500 Subject: [PATCH 2/2] Version 4.21.4 --- seleniumbase/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seleniumbase/__version__.py b/seleniumbase/__version__.py index b219126d2d0..c92f01d22ab 100755 --- a/seleniumbase/__version__.py +++ b/seleniumbase/__version__.py @@ -1,2 +1,2 @@ # seleniumbase package -__version__ = "4.21.3" +__version__ = "4.21.4"