I googled this question and found a lot of answers, still non of the solutions worked for me.
So my question is: how to Enable "Save as" dialog for Selenium Chromedriver? I want to see this dialog when I download a file.
Good to see how to do it in Python but any other languages are good too.
I've tried to add the next line "{download.prompt_for_download': 'true'}
" to arguments and to experimental options:
chrome_options.add_experimental_option("prefs"{'download.prompt_for_download': 'true'})
chrome_options.add_argument({'download.prompt_for_download': 'true'})
The first one didn't give any result, the second one caused code error.
I also tried "saveas-menu-label
" and got no result.