-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.json
65 lines (65 loc) · 1.49 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
64
65
{
"platformName": "android",
"isRemote": true,
"remoteConnectionUrl": "http://127.0.0.1:4723/wd/hub",
"screensLocation": "integration",
"driverSettings": {
"android": {
"deviceKey": "Android_Emulator",
"applicationPath": "./src/test/resources/apps/ApiDemos-debug.apk",
"capabilities": {
"platformName": "Android",
"automationName": "UIAutomator2",
"eventTimings": true,
"uiautomator2ServerInstallTimeout": 30000
}
},
"ios": {
"deviceKey": "iOS_Simulator",
"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/"
}
}