How to set default download directory in selenium Safari Capabilities?
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!