-
Notifications
You must be signed in to change notification settings - Fork 0
/
nightwatch.json
106 lines (101 loc) · 2.64 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"src_folders" : ["test/e2e"],
"output_folder" : "test/e2e/logs/reports",
"custom_commands_path" : "",
"custom_assertions_path" : "",
"globals_path" : "",
"live_output": false,
"selenium" : {
"start_process" : true,
"server_path" : "node_modules/selenium-server-standalone-jar/jar/selenium-server-standalone-2.40.0.jar",
"log_path" : "test/e2e/logs",
"host" : "127.0.0.1",
"port" : 4444,
"cli_args" : {
"webdriver.chrome.driver" : "node_modules/chromedriver/lib/chromedriver/chromedriver",
"webdriver.firefox.profile" : "",
"webdriver.ie.driver" : ""
}
},
"test_settings" : {
"default" : {
"launch_url" : "http://localhost",
"selenium_port" : 4444,
"selenium_host" : "127.0.0.1",
"silent": true,
"disable_colors": false,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts": true
}
},
"saucelabschrome" : {
"selenium_host" : "ondemand.saucelabs.com",
"selenium_port" : 80,
"username" : "sosickstudios",
"access_key" : "be8a17ec-6e5e-4f02-bbe4-a9bfba87f96c",
"use_ssl" : false,
"silent" : true,
"output" : true,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"name" : "trainify",
"browserName": "chrome",
"version": "35"
},
"selenium" : {
"start_process" : false
}
},
"saucelabsfirefox" : {
"selenium_host" : "ondemand.saucelabs.com",
"selenium_port" : 80,
"username" : "sosickstudios",
"access_key" : "be8a17ec-6e5e-4f02-bbe4-a9bfba87f96c",
"use_ssl" : false,
"silent" : true,
"output" : true,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"name" : "trainify",
"browserName": "firefox",
"version": "30"
},
"selenium" : {
"start_process" : false
}
},
"saucelabsie" : {
"selenium_host" : "ondemand.saucelabs.com",
"selenium_port" : 80,
"username" : "sosickstudios",
"access_key" : "be8a17ec-6e5e-4f02-bbe4-a9bfba87f96c",
"use_ssl" : false,
"silent" : true,
"output" : true,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"name" : "trainify",
"browserName": "internet explorer",
"version": "10"
},
"selenium" : {
"start_process" : false
}
}
}
}