Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

nightwatch.conf.js 765 B

il y a 7 ans
il y a 7 ans
1234567891011121314151617181920212223242526272829303132
  1. module.exports = {
  2. src_folders: ["test/e2e/specs"],
  3. output_folder: "test/e2e/reports",
  4. globals_path: "test/e2e/globals.js",
  5. selenium: {
  6. start_process: false
  7. },
  8. test_settings: {
  9. default: {
  10. launch_url: "http://localhost:8080",
  11. selenium_port: 9515,
  12. selenium_host: "localhost",
  13. default_path_prefix: "",
  14. globals: {
  15. waitForConditionTimeout: 5000
  16. },
  17. desiredCapabilities: {
  18. browserName: "chrome",
  19. chromeOptions: {
  20. args: [
  21. "--headless",
  22. "--no-sandbox",
  23. "--disable-gpu",
  24. "--allow-running-insecure-content",
  25. "--ignore-certificate-errors",
  26. "--window-size=1920x1080"
  27. ]
  28. }
  29. }
  30. }
  31. }
  32. };