How to set default download directory in selenium Safari Capabilities?
Asked 07 September, 2021
Viewed 3.1K times
  • 63
Votes

I have being looking around for documentation related to setting Safari capabilities. The browser does not download the file to the given path.

Does anyone have any suggestions?

      desiredCapabilities: {
        browserName: 'safari',
        javascriptEnabled: true,
        options: {
          dataDir : 'my/path/here'
        }
      },
    }

Thanks in advance!

0 Answer