Skip to content

Commit 44e12cb

Browse files
authored
add grid settings (#587)
1 parent 4d98683 commit 44e12cb

5 files changed

+71
-0
lines changed

grid/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Run Grid
2+
3+
```bash
4+
$ java -jar selenium-server-standalone-3.2.0.jar -role hub -hubConfig hub_config.json
5+
```
6+
7+
# Run Appium
8+
9+
```bash
10+
$ node . --nodeconfig ~/GitHub/ruby_lib/grid/config.json
11+
12+
# or
13+
14+
$ appium --nodeconfig ~/GitHub/ruby_lib/grid/config.json
15+
```
16+
17+
# Run Ruby Script
18+
19+
```bash
20+
$ rake ios # for example
21+
```

grid/appium.txt.ios.example

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[caps]
2+
platformName = "iOS"
3+
platformVersion = "10.3"
4+
deviceName = "iPhone Simulator"
5+
browserName = "Safari"
6+
some_capability = "some_capability"
7+
8+
[appium_lib]
9+
server_url = "http://localhost:4444/wd/hub"
10+
sauce_username = ""
11+
sauce_access_key = ""

grid/config.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"capabilities":
3+
[
4+
{
5+
"browserName": "iPhone",
6+
"version":"9.0",
7+
"platform":"MAC",
8+
"maxInstances": 1
9+
}
10+
],
11+
"configuration":
12+
{
13+
"cleanUpCycle": 2000,
14+
"timeout": 30000,
15+
"proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
16+
"url": "http://localhost:4723/wd/hub",
17+
"host": "localhost",
18+
"port": 4723,
19+
"maxSession": 1,
20+
"register": true,
21+
"registerCycle": 5000,
22+
"hubPort": 4444,
23+
"hubHost": "localhost"
24+
}
25+
}

grid/hub_config.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"port": 4444,
3+
"newSessionWaitTimeout": -1,
4+
"servlets" : [],
5+
"withoutServlets": [],
6+
"custom": {},
7+
"capabilityMatcher": "org.openqa.grid.internal.utils.DefaultCapabilityMatcher",
8+
"throwOnCapabilityNotPresent": true,
9+
"cleanUpCycle": 5000,
10+
"role": "hub",
11+
"debug": false,
12+
"browserTimeout": 0,
13+
"timeout": 1800
14+
}
20.7 MB
Binary file not shown.

0 commit comments

Comments
 (0)