This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_example.xml
42 lines (42 loc) · 2 KB
/
config_example.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<comment>-- Properties File Comments --</comment>
<!-- WebDriverSystemPaths -->
<entry key="WebDriverSystemPaths.Chrome">C:\path\to\chromedriver\chromedriver.exe</entry>
<entry key="WebDriverSystemPaths.Firefox"></entry>
<entry key="WebDriverSystemPaths.IE"></entry>
<entry key="WebDriverSystemPaths.Edge"></entry>
<entry key="WebDriverSystemPaths.Opera"></entry>
<entry key="WebDriverSystemPaths.Safari"></entry>
<entry key="WebDriverSystemPaths.iOS_iPhone"></entry>
<entry key="WebDriverSystemPaths.iOS_iPad"></entry>
<entry key="WebDriverSystemPaths.Android"></entry>
<entry key="WebDriverSystemPaths.HtmlUnit"></entry>
<!-- Local -->
<!-- Local's "EnvironIP" is always "localhost" -->
<entry key="Local.EnvironPort">8080</entry>
<entry key="Local.WebContextRoot"></entry>
<entry key="Local.WaitSeconds">1</entry>
<!-- Test -->
<entry key="Test.EnvironIP">localhost</entry>
<entry key="Test.EnvironPort">8080</entry>
<entry key="Test.WebContextRoot"></entry>
<entry key="Test.WaitSeconds">1</entry>
<!-- TestSleeps : Used only when "demonstrating" a test -->
<entry key="TestSleeps.MilliSecondsBetweenKeyStrokes">100</entry>
<entry key="TestSleeps.MilliSecondsBeforeClick">100</entry>
<entry key="TestSleeps.MilliSecondsAfterClick">100</entry>
<entry key="TestSleeps.MilliSecondSimulateInteractivePause">2000</entry>
<entry key="TestSleeps.MilliSecondDurationOfSuccessMessage">3500</entry>
<!-- SeleniumNodes -->
<entry key="SeleniumNodeCount">1</entry>
<entry key="SeleniumNodeLocal_1">True</entry> <!-- If local is true, no need to specify an url, only the driver type -->
<entry key="SeleniumNodeDriverType_1">Chrome</entry>
<!--
<entry key="SeleniumNodeCount">2</entry>
<entry key="SeleniumNodeLocal_2">False</entry> # Anything other than an explicit "true" will be read as false
<entry key="SeleniumNodeRemoteURL_2">http://localhost:5555/wd/hub</entry>
<entry key="SeleniumNodeDriverType_2">Chrome</entry>
-->
</properties>