You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

eclipse-run-selected-test.properties 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #
  2. # This is an example property file showing how to control how TestBench is used
  3. # in the Vaadin Framework project. You should not modify this file since it's
  4. # under version control. Instead, create a copy of it inside the /work/ folder
  5. # in the project and make your customizations to that file.
  6. #
  7. # Path names on Windows should replace '\' with '\\' to parse and use those correctly.
  8. #
  9. # Location of the screenshot directory. This is mutually exclusive with the folder settings for XVFB testing.
  10. # This is the directory that contains the "references" directory
  11. com.vaadin.testbench.screenshot.directory=<enter the full path to the "uitest" directory, parent of "reference-screenshots" directory>
  12. # Deployment url to use for testing. Context path must be /
  13. #com.vaadin.testbench.deployment.url=http://<enter your ip here>:8888/
  14. # Simulates @RunLocally with the given value on all test classes without a @RunLocally annotation.
  15. # Use simple browser name (phantomjs, chrome, firefox, ie11)
  16. #com.vaadin.testbench.runLocally=firefox
  17. # Optional override to specify the location of the Firefox/PhantomJS binary
  18. #firefox.path=/usr/bin/firefox
  19. #phantomjs.binary.path=/usr/bin/phantomjs
  20. # By default using @RunLocally annotation in Framework tests is not allowed.
  21. # Running tests locally can be done with com.vaadin.testbench.runLocally parameter above.
  22. # Uncomment the following line if you want to be able to use @RunLocally annotation
  23. #com.vaadin.testbench.allowRunLocally=true
  24. #
  25. # Enable test retries when running tests in an unstable environment.
  26. #
  27. #com.vaadin.testbench.Parameters.maxAttempts=3
  28. #
  29. # Running local instance of XVFB testing cluster. Uncomment all lines below.
  30. # Fill in the full path for uitest folder and remember to comment out the other screenshot folder.
  31. #
  32. #com.vaadin.testbench.Parameters.screenshotReferenceDirectory=<path to uitest>/reference-screenshots
  33. #com.vaadin.testbench.Parameters.screenshotErrorDirectory=<path to uitest>/target/error-screenshots
  34. #com.vaadin.testbench.hub.url=http://localhost:4444/wd/hub
  35. #browser.factory=com.vaadin.tests.tb3.XvfbHubBrowserFactory
  36. #browsers.exclude=internet explorer11,phantomjs1,phantomjs2