How I can hide blue bubble "Find your downloads here" that appears after downloading a file?
I tried to use args
--no-first-run and
--ash-no-nudges but it' didn't work for me.
Thanks!
- Chrome 120
- selenium 4.16.0
'goog:chromeOptions': {
'args': ['--ash-no-nudges'],
'extensions': [encoded],
# for downloading file from browser without prompt
'prefs': {
'download': {
'prompt_for_download': False,
'directory_upgrade': True,
'default_directory': '/home/selenium/Downloads'
}
}
}