-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.json
63 lines (63 loc) · 1.48 KB
/
settings.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"platformName": "android",
"isRemote": false,
"remoteConnectionUrl": "http://127.0.0.1:4723/wd/hub",
"screensLocation": "<NAME_OF_PACKAGE_WITH_SCREENS>",
"driverSettings": {
"android": {
"deviceKey": "<KEY_OF_ANDROID_DEVICE_FROM_DEVICES_JSON>",
"applicationPath": "./src/test/resources/apps/ApiDemos-debug.apk",
"capabilities": {
"platformName": "Android",
"automationName": "UiAutomator2"
}
},
"ios": {
"deviceKey": "<KEY_OF_IOS_DEVICE_FROM_DEVICES_JSON>",
"applicationPath": "./src/test/resources/apps/TestApp.app.zip",
"capabilities": {
"platformName": "iOS",
"automationName": "XCUITest"
}
}
},
"localServiceSettings": {
"arguments": {
"--allow-insecure": "chromedriver_autodownload"
},
"capabilities": {
}
},
"timeouts": {
"timeoutImplicit": 0,
"timeoutCondition": 15,
"timeoutPollingInterval": 300,
"timeoutCommand": 120
},
"retry": {
"number": 2,
"pollingInterval": 300
},
"logger": {
"language": "en"
},
"elementCache": {
"isEnabled": true
},
"touchActions": {
"swipe": {
"duration": 1,
"retries": 5,
"verticalOffset": 0.2,
"horizontalOffset": 0.5
}
},
"visualization": {
"imageExtension": "png",
"maxFullFileNameLength": 255,
"defaultThreshold": 0.012,
"comparisonWidth": 16,
"comparisonHeight": 16,
"pathToDumps": "./src/test/resources/visualDumps/"
}
}