-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathnightwatch.conf.js
More file actions
152 lines (133 loc) · 4.16 KB
/
nightwatch.conf.js
File metadata and controls
152 lines (133 loc) · 4.16 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// Nightwatch 3.x Configuration for LambdaTest HyperExecute
// https://nightwatchjs.org/gettingstarted/configuration/
module.exports = {
// Test source folders
src_folders: ['tests'],
// Output folder for reports
output_folder: 'reports',
// See https://nightwatchjs.org/guide/concepts/page-object-model.html
page_objects_path: [],
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-commands.html
custom_commands_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: '',
webdriver: {},
test_workers: {
enabled: true,
workers: 'auto'
},
test_settings: {
default: {
disable_error_log: false,
launch_url: 'https://lambdatest.github.io/sample-todo-app',
request_timeout_options: {
timeout: 1000000
},
screenshots: {
enabled: true,
path: 'screens',
on_failure: true
},
desiredCapabilities: {
browserName: 'chrome'
}
},
//////////////////////////////////////////////////////////////////////////////
// LambdaTest Remote Configuration //
// Set credentials via environment variables: //
// - LT_USERNAME //
// - LT_ACCESS_KEY //
//////////////////////////////////////////////////////////////////////////////
remote: {
selenium: {
start_process: false,
server_path: '',
host: process.env.SELENIUM_HOST || 'hub.lambdatest.com',
port: process.env.SELENIUM_PORT || 443
},
username: process.env.LT_USERNAME || '',
access_key: process.env.LT_ACCESS_KEY || '',
webdriver: {
timeout_options: {
timeout: 100000,
retry_attempts: 3
},
ssl: true,
keep_alive: true,
start_process: false
},
desiredCapabilities: {
'LT:Options': {
build: 'Nightwatch-Selenium-Sample-Hypertest',
visual: true,
project: 'HyperExecute-Nightwatch',
console: true,
network: true,
enableCustomTranslation: true,
platformName: process.env.HYPEREXECUTE_PLATFORM || '',
selenium_version: '4.0.0',
w3c: true,
plugin: 'node_js-nightwatch_js'
}
}
},
// Chrome environment - use with: nightwatch -e remote.chrome
'remote.chrome': {
extends: 'remote',
desiredCapabilities: {
browserName: 'chrome',
browserVersion: 'latest',
'goog:chromeOptions': {
w3c: true
}
}
},
// Firefox environment - use with: nightwatch -e remote.firefox
'remote.firefox': {
extends: 'remote',
desiredCapabilities: {
browserName: 'firefox',
browserVersion: 'latest',
'moz:firefoxOptions': {
args: []
}
}
},
// Edge environment - use with: nightwatch -e remote.edge
'remote.edge': {
extends: 'remote',
desiredCapabilities: {
browserName: 'MicrosoftEdge',
browserVersion: 'latest'
}
},
// Safari environment - use with: nightwatch -e remote.safari
'remote.safari': {
extends: 'remote',
desiredCapabilities: {
browserName: 'safari',
browserVersion: 'latest'
}
},
//////////////////////////////////////////////////////////////////////////////
// Legacy environment aliases (for backward compatibility) //
// These allow using -e chrome instead of -e remote.chrome //
//////////////////////////////////////////////////////////////////////////////
chrome: {
extends: 'remote.chrome'
},
firefox: {
extends: 'remote.firefox'
},
edge: {
extends: 'remote.edge'
},
safari: {
extends: 'remote.safari'
}
}
};