I need to uncheck "Ask where to save each file before downloading" Chrome
setting via selenium
:
I don't even know where to start since the documentation page doesn't contain the list of all available options. And, I haven't found the appropriate setting among chrome://flags/
.
As far as I understand, I need to instantiate Chrome Options
or Desired Capabilities
, set a particular option/capability and pass the Chrome Options
or Desired Capabilities
instance to the ChromeDriver
constructor.
Note that for Firefox the situation is different, there is an about:config
page where you can easily find a setting and set it via Firefox Profile
. Pretty straightforward.
I'm using python bindings, but it is not a requirement, the question is more or less generic.