Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 17, 2020 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velotiotech/74bfcfbf6f9b666d8a1ad59494fa0c46 to your computer and use it in GitHub Desktop.
Save velotiotech/74bfcfbf6f9b666d8a1ad59494fa0c46 to your computer and use it in GitHub Desktop.
const chromedriver = require('chromedriver');
module.exports = {
src_folders : ["tests"], //tests is a folder in workspace which has the step definitions
test_settings: {
default: {
webdriver: {
start_process: true,
server_path: chromedriver.path,
port: 4444,
cli_args: ['--port=4444']
},
desiredCapabilities: {
browserName: 'chrome'
}
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment