forked from ethereum/remix-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnightwatch.json
42 lines (41 loc) · 1.02 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
{
"src_folders" : ["test-browser"],
"output_folder" : "reports",
"custom_commands_path" : "",
"custom_assertions_path" : "",
"page_objects_path" : "",
"globals_path" : "",
"test_settings" : {
"default" : {
"launch_url": "http://ondemand.saucelabs.com:80",
"selenium_port": 80,
"selenium_host": "ondemand.saucelabs.com",
"silent": true,
"username": "chriseth",
"access_key": "b781828a-9e9c-43d8-89d4-2fbb879595ca",
"screenshots" : {
"enabled" : false
},
"globals": {
"waitForConditionTimeout": 60000
}
},
"remote" : {
"desiredCapabilities": {
"browserName": "firefox",
"javascriptEnabled": true,
"acceptSslCerts": true
}
},
"local" : {
"launch_url": "http://localhost:8080",
"selenium_port": 4444,
"selenium_host": "localhost",
"desiredCapabilities": {
"browserName": "firefox",
"javascriptEnabled": true,
"acceptSslCerts": true
}
}
}
}