Created
June 17, 2020 06:48
-
-
Save velotiotech/634240cf58b4e1357293058ce54ce206 to your computer and use it in GitHub Desktop.
This file contains 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
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