-
Notifications
You must be signed in to change notification settings - Fork 29
/
nightwatch.json
92 lines (80 loc) · 2.01 KB
/
nightwatch.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"src_folders" : ["tests"],
"output_folder" : "reports",
"custom_commands_path" : "custom_commands",
"custom_assertions_path" : "",
"page_objects_path" : "",
"globals_path" : "",
"test_workers" : {"enabled" : true, "workers" : "auto"},
"test_settings" : {
"default" : {
"launch_url" : "http://localhost",
"selenium_port" : 443,
"selenium_host" : "ondemand.saucelabs.com",
"use_ssl": true,
"silent": true,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"username" : "${SAUCE_USERNAME}",
"access_key" : "${SAUCE_ACCESS_KEY}",
"skip_testcases_on_fail": false,
"desiredCapabilities": {
"javascriptEnabled": true,
"acceptSslCerts": true
}
},
"chrome": {
"desiredCapabilities": {
"platform": "Windows 7",
"browserName": "chrome",
"version": "latest"
}
},
"chromemac": {
"desiredCapabilities": {
"platform": "macOS 10.13",
"browserName": "chrome",
"version": "latest"
}
},
"safari": {
"desiredCapabilities": {
"platform": "macOS 10.13",
"browserName": "Safari",
"version": "latest"
}
},
"firefox" : {
"desiredCapabilities": {
"platform": "Windows 10",
"browserName": "firefox",
"version": "33"
}
},
"internet_explorer_edge" : {
"desiredCapabilities": {
"platform": "Windows 10",
"browserName": "MicrosoftEdge",
"version": "latest"
}
},
"android_s4_emulator": {
"desiredCapabilities": {
"browserName": "android",
"deviceOrientation": "portrait",
"deviceName": "Samsung Galaxy S4 Emulator"
}
},
"iphone_x_simulator": {
"desiredCapabilities": {
"browserName": "Safari",
"deviceOrientation": "portrait",
"deviceName": "iPhone X Simulator",
"platformVersion": "13.0",
"platformName": "iOS"
}
}
}
}