Skip to content

Instantly share code, notes, and snippets.

@seleniumgists
Created May 19, 2020 18:54
Show Gist options
  • Select an option

  • Save seleniumgists/399a097f57262902aa1e483fdbb3e1cc to your computer and use it in GitHub Desktop.

Select an option

Save seleniumgists/399a097f57262902aa1e483fdbb3e1cc to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
var config = require('./base.conf.js').config;
config.seleniumAddress = '<http://selenium-hub:4444>';
config.capabilities = {
'browserName': 'chrome',
'goog:chromeOptions': {
'args': ["--start-maximized", "--silent", "--log-level=3"],
'prefs': {
'download': {
'prompt_for_download': false,
'directory_upgrade': true,
'default_directory': '/home/seluser/'
}
}
}
};
exports.config = config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment