Skip to content

Commit

Permalink
Merge pull request #2294 from seleniumbase/hide-downloads-bubble
Browse files Browse the repository at this point in the history
Hide the "Find your downloads here" bubble on Chrome
  • Loading branch information
mdmintz authored Nov 17, 2023
2 parents 72bc798 + 1141c11 commit 7d9d5c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.21.3"
__version__ = "4.21.4"
5 changes: 3 additions & 2 deletions seleniumbase/core/browser_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7d9d5c5

Please sign in to comment.