Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 17, 2020 06:47
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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