Created
May 19, 2020 18:54
-
-
Save seleniumgists/399a097f57262902aa1e483fdbb3e1cc to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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