forked from orieken/selenium-nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nightwatch_from_app_root.json
40 lines (38 loc) · 1.05 KB
/
nightwatch_from_app_root.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
{
"src_folders" : ["tests"],
"output_folder" : "packages/selenium-nightwatch/tests-output",
"custom_commands_path" : "",
"custom_assertions_path" : "",
"globals_path" : "packages/selenium-nightwatch/globals.json",
"selenium" : {
"start_process" : true,
"server_path" : "packages/selenium-nightwatch/selenium/selenium-server-standalone-2.42.0.jar",
"log_path" : "packages/selenium-nightwatch/logs",
"host" : "127.0.0.1",
"port" : 4444,
"cli_args": {
"webdriver.chrome.driver": "selenium/chromedriver"
}
},
"test_settings" : {
"default" : {
"launch_url" : "http://localhost",
"selenium_host" : "127.0.0.1",
"selenium_port" : 4444,
"pathname": "/wd/hub",
"silent" : true,
"disable_colors": false,
"firefox_profile" : false,
"ie_driver" : "",
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities" : {
"browserName" : "firefox",
"javascriptEnabled" : true,
"acceptSslCerts" : true
}
}
}
}