-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnightwatch.json
More file actions
31 lines (29 loc) · 771 Bytes
/
Copy pathnightwatch.json
File metadata and controls
31 lines (29 loc) · 771 Bytes
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
{
"src_folders" : ["tests"],
"page_objects_path": ["pages"],
"globals_path": "./util/globals.js",
"webdriver" : {
"start_process": true
},
"test_settings" : {
"default" : {
"launch_url": "https://google.com",
"webdriver" : {
"server_path": "node_modules/.bin/chromedriver.cmd",
"port": 9515
},
"desiredCapabilities": {
"browserName": "chrome"
}
},
"firefox" : {
"webdriver" : {
"server_path": "node_modules/.bin/chromedriver.cmd",
"port": 4444
},
"desiredCapabilities": {
"browserName": "firefox"
}
}
}
}