7

Trying to find a solution to download files during my tests, i found this question that lead me to preferences file in chrome folder.

Apparently, there are no info about shutting the prompt for download or/and setting a default folder. Does anyone knows how i can do this?

Here's what i tried:

capabilities: {
        'browserName': 'chrome',
        'chromeOptions': {

            prefs: {
                'downloads': {
                    'prompt_for_download': false,
                    'default_directory': '/downloads/'
                }
            }
        }
    },
Community
  • 1
  • 1
andrepm
  • 867
  • 4
  • 13
  • 31

1 Answers1

19

You are doing it correctly, except you need to:

  • specify an absolute path to the "downloads" directory
  • add directory_upgrade option

Example:

capabilities: {
        'browserName': 'chrome',
        'chromeOptions': {

            prefs: {
                download: {
                    'prompt_for_download': false,
                    'directory_upgrade': true,
                    'default_directory': '/absolute/path/here'
                }
            }
        }
    },

See also: Can't stop Protractor from displaying file download prompt

Community
  • 1
  • 1
alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195