-
Notifications
You must be signed in to change notification settings - Fork 0
/
nightwatch.conf.js
92 lines (77 loc) · 2.57 KB
/
nightwatch.conf.js
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
// Refer to the online docs for more details:
// https://nightwatchjs.org/gettingstarted/configuration/
//
// _ _ _ _ _ _ _
// | \ | |(_) | | | | | | | |
// | \| | _ __ _ | |__ | |_ __ __ __ _ | |_ ___ | |__
// | . ` || | / _` || '_ \ | __|\ \ /\ / / / _` || __| / __|| '_ \
// | |\ || || (_| || | | || |_ \ V V / | (_| || |_ | (__ | | | |
// \_| \_/|_| \__, ||_| |_| \__| \_/\_/ \__,_| \__| \___||_| |_|
// __/ |
// |___/
require('dotenv').config();
const percy = require('@percy/nightwatch');
module.exports = {
// An array of folders (excluding subfolders) where your tests are located;
// if this is not specified, the test source must be passed as the second argument to the test runner.
src_folders: ['test','nightwatch'],
// See https://nightwatchjs.org/guide/concepts/page-object-model.html
page_objects_path: ["nightwatch/pages"],
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-commands.html
custom_commands_path: [percy.path],
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-assertions.html
custom_assertions_path: [],
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-plugins.html
plugins: [],
// See https://nightwatchjs.org/guide/concepts/test-globals.html
globals_path: '',
waitForConditionTimeout : 5000,
webdriver: {
keep_alive: true,
timeout_options: {
timeout: 120000
}
},
test_workers: {
enabled: true,
workers: 'auto'
},
globals: {},
test_settings: {
// will run tests in production environment in Browserstack in Chrome
prod_remote_chrome: {
launch_url: 'https://www.browserstack.com',
skip_testcases_on_fail: false,
screenshots: {
enabled: true,
path: 'screens',
on_failure: true
},
selenium: {
host: 'hub-cloud.browserstack.com',
port: 443
},
desiredCapabilities: {
'bstack:options': {
userName: process.env.BROWSERSTACK_USERNAME,
accessKey: process.env.BROWSERSTACK_ACCESS_KEY,
"browserName": "chrome",
"browserVersion": "latest",
"os": "Windows",
"osVersion": "11",
"seleniumVersion": "4.4.0",
"resolution": "1920x1080",
}
},
disable_error_log: true,
webdriver: {
timeout_options: {
timeout: 60000,
retry_attempts: 3
},
keep_alive: true,
start_process: false
}
}
}
};