-
Notifications
You must be signed in to change notification settings - Fork 13
/
node.json.erb
40 lines (40 loc) · 1.29 KB
/
node.json.erb
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
{
"capabilities":
[
{
"browserName": "firefox",
"version": "<%= @ffversion %>",
"maxInstances": <%= @ffmaxinstances %>,
"seleniumProtocol": "WebDriver",
"platform": "LINUX"
},
{
"browserName": "opera",
"version": "<%= @operaversion %>",
"maxInstances": <%= @operamaxinstances %>,
"seleniumProtocol": "WebDriver",
"platform": "LINUX"
},
{
"browserName": "chrome",
"version": "<%= @chromeversion %>",
"maxInstances": <%= @chromemaxinstances %>,
"seleniumProtocol": "WebDriver",
"platform": "LINUX"
},
{
"browserName": "htmlunit",
"version": "<%= @htmlunitversion %>",
"maxInstances": <%= @htmlunitmaxinstances %>,
"seleniumProtocol": "WebDriver",
"platform": "LINUX"
},
],
"configuration":
{
"proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
"maxSession": 5,
"register": true,
"registerCycle": 5000
}
}