Advertisement
Guest User

Untitled

a guest
May 25th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. const chromedriver = require('chromedriver');
  2.  
  3. module.exports = {
  4. src_folders : ["tests"], //tests is a folder in workspace which has the step definitions
  5. page_objects_path: 'page_objects/', //page_objects folder where selectors are saved
  6. test_settings: {
  7. default: {
  8. webdriver: {
  9. start_process: true,
  10. server_path: chromedriver.path,
  11. port: 4444,
  12. cli_args: ['--port=4444']
  13. },
  14. desiredCapabilities: {
  15. browserName: 'chrome'
  16. }
  17. }
  18. }
  19. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement