Skip to content

Commit 7d9d5c5

Browse files
authored
Merge pull request #2294 from seleniumbase/hide-downloads-bubble
Hide the "Find your downloads here" bubble on Chrome
2 parents 72bc798 + 1141c11 commit 7d9d5c5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

seleniumbase/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.21.3"
2+
__version__ = "4.21.4"

seleniumbase/core/browser_launcher.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1094,12 +1094,13 @@ def _set_chrome_options(
10941094
if user_data_dir:
10951095
chrome_options.add_argument(
10961096
"--disable-features=OptimizationHintsFetching,Translate,"
1097-
"OptimizationTargetPrediction,PrivacySandboxSettings4"
1097+
"OptimizationTargetPrediction,PrivacySandboxSettings4,"
1098+
"DownloadBubble,DownloadBubbleV2"
10981099
)
10991100
else:
11001101
chrome_options.add_argument(
11011102
"--disable-features=OptimizationHintsFetching,Translate,"
1102-
"OptimizationTargetPrediction"
1103+
"OptimizationTargetPrediction,DownloadBubble,DownloadBubbleV2"
11031104
)
11041105
if (
11051106
is_using_uc(undetectable, browser_name)

0 commit comments

Comments
 (0)