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