Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

nightwatch.json 1.3 KiB

před 7 roky
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "src_folders" : ["test/e2e/scenarios"],
  3. "output_folder" : "reports",
  4. "live_output": true,
  5. "custom_commands_path" : "",
  6. "custom_assertions_path" : "",
  7. "page_objects_path" : "test/e2e/pages",
  8. "globals_path" : "",
  9. "test_workers" : {
  10. "enabled" : true,
  11. "workers" : "auto"
  12. },
  13. "test_runner" : {
  14. "type" : "mocha",
  15. "options" : {
  16. "ui" : "bdd",
  17. "reporter" : "list"
  18. }
  19. },
  20. "selenium" : {
  21. "start_process" : true,
  22. "server_path" : "node_modules/selenium-server-standalone-jar/jar/selenium-server-standalone-3.4.0.jar",
  23. "log_path" : "",
  24. "host" : "127.0.0.1",
  25. "port" : 4444,
  26. "cli_args" : {
  27. "webdriver.chrome.driver" : "node_modules/chromedriver/bin/chromedriver",
  28. "webdriver.firefox.profile" : "",
  29. "webdriver.ie.driver" : ""
  30. }
  31. },
  32. "test_settings" : {
  33. "default" : {
  34. "launch_url" : "http://localhost",
  35. "selenium_port" : 4444,
  36. "selenium_host" : "localhost",
  37. "silent": true,
  38. "screenshots" : {
  39. "enabled" : false,
  40. "path" : ""
  41. },
  42. "desiredCapabilities": {
  43. "browserName": "chrome",
  44. "marionette": true
  45. }
  46. },
  47. "chrome" : {
  48. "desiredCapabilities": {
  49. "browserName": "chrome"
  50. }
  51. },
  52. "edge" : {
  53. "desiredCapabilities": {
  54. "browserName": "MicrosoftEdge"
  55. }
  56. }
  57. }
  58. }