-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
/
Copy pathappium.config.sample.json
45 lines (45 loc) · 1 KB
/
appium.config.sample.json
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
{
"server": {
"address": "127.0.0.1",
"allow-cors": true,
"allow-insecure": ["foo", "bar"],
"base-path": "/",
"callback-address": "127.0.0.1",
"callback-port": 4723,
"debug-log-spacing": true,
"default-capabilities": {
"key": "value"
},
"deny-insecure": ["baz", "quux"],
"driver": {
"xcuitest": {
"key": "value"
}
},
"keep-alive-timeout": 600,
"local-timezone": true,
"log": "/tmp/appium.log",
"log-level": "info",
"log-no-colors": false,
"log-timestamp": true,
"long-stacktrace": false,
"no-perms-check": false,
"nodeconfig": {
"key": "value"
},
"plugin": {
"images": {
"key": "value"
}
},
"port": 4723,
"relaxed-security": false,
"session-override": false,
"strict-caps": true,
"tmp": "/tmp",
"trace-dir": "/tmp/appium-instruments",
"use-drivers": ["foo", "bar"],
"use-plugins": ["baz", "quux"],
"webhook": "https://some-url.com"
}
}