Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 17, 2020 06:48
  • 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
Save velotiotech/634240cf58b4e1357293058ce54ce206 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
page_objects_path: 'page_objects/', //page_objects folder where selectors are saved
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