Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. {
  2. "src_folders" : ["tests"],
  3. "output_folder" : "..\\..\\testresults\\e2e",
  4. "custom_commands_path" : "utils",
  5. "custom_assertions_path" : "",
  6. "page_objects_path" : "pages",
  7. "globals_path" : "",
  8.  
  9. "selenium" : {
  10. "start_process" : true,
  11. "start_session" : true,
  12. "server_path" : "..\\..\\lib\\e2e-test\\selenium-server-standalone-2.53.1.jar",
  13. "log_path" : "..\\..\\testresults\\e2e",
  14. "host" : "127.0.0.1",
  15. "port" : 4444,
  16. "cli_args" : {
  17. "webdriver.chrome.driver" : "..\\..\\lib\\e2e-test\\chromedriver.exe"
  18. }
  19. },
  20.  
  21. "test_settings" : {
  22. "default" : {
  23. "selenium_port" : 4444,
  24. "selenium_host" : "127.0.0.1",
  25. "silent": true,
  26. "screenshots" : {
  27. "enabled" : true,
  28. "path" : "..\\..\\testresults\\e2e\\error_snap_shots"
  29. },
  30. "globals": { "username" : "admin@local",
  31. "password": "admin",
  32. "urls": {
  33. "login":"http://10.197.17.236"
  34. }
  35. },
  36. "desiredCapabilities": {
  37. "browserName": "chrome",
  38. "javascriptEnabled": true,
  39. "acceptSslCerts": true,
  40. "chromeOptions": {
  41. "args": ["disable-extensions", "ignore-certificate-errors", "test-type", "--window-size=12920,1080" ]
  42. }
  43. },
  44. "test_runner":"mocha"
  45.  
  46. },
  47.  
  48. "chrome" : {
  49. "desiredCapabilities": {
  50. "browserName": "chrome",
  51. "javascriptEnabled": true,
  52. "acceptSslCerts": true
  53. }
  54. }
  55. }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement