-
Notifications
You must be signed in to change notification settings - Fork 79
/
nightwatch.json
67 lines (64 loc) · 1.29 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
{
"src_folders" : ["test"],
"output_folder" : "reports",
"custom_commands_path" : "",
"custom_assertions_path" : "",
"page_objects_path" : "",
"globals_path" : "",
"selenium" : {
"start_process" : false,
"host" : "127.0.0.1",
"port" : 80
},
"test_settings" : {
"default" : {
"launch_url" : "http://test.prototypo.io",
"selenium_port" : 80,
"selenium_host" : "hub.browserstack.com",
"silent": true,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"browserName": "firefox",
"javascriptEnabled": true,
"acceptSslCerts": true,
"browserstack.user": "${BROWSERSTACK_USERNAME}",
"browserstack.key": "${BROWSERSTACK_KEY}",
"os": "WINDOWS",
"os_version": "8",
"resolution": "1920x1080"
}
},
"chrome_win8": {
"desiredCapabilities": {
"browserName": "chrome"
}
},
"chrome_win7": {
"desiredCapabilities": {
"browserName": "chrome",
"os_version": "7"
}
},
"firefox_win7": {
"desiredCapabilities": {
"os_version": "7"
}
},
"chrome_mac": {
"desiredCapabilities": {
"browserName": "chrome",
"os": "OS X",
"os_version": "El Capitan"
}
},
"firefox_mac": {
"desiredCapabilities": {
"os": "OS X",
"os_version": "El Capitan"
}
}
}
}