Skip to content

Commit 19a760b

Browse files
committed
get started examples
1 parent 31318f7 commit 19a760b

8 files changed

+3431
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
logs/

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Web testing examples
2+
3+
- [x] [Getting Started](/getting-started)
4+
- [ ] POM

getting-started/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
tests_output/
3+
logs/
4+
nightwatch-examples/

getting-started/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Install
2+
```bash
3+
npm i
4+
```
5+
6+
## Run Examples
7+
```bash
8+
npm test
9+
```

getting-started/nightwatch.conf.js

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
// Refer to the online docs for more details:
2+
// https://nightwatchjs.org/gettingstarted/configuration/
3+
//
4+
5+
// _ _ _ _ _ _ _
6+
// | \ | |(_) | | | | | | | |
7+
// | \| | _ __ _ | |__ | |_ __ __ __ _ | |_ ___ | |__
8+
// | . ` || | / _` || '_ \ | __|\ \ /\ / / / _` || __| / __|| '_ \
9+
// | |\ || || (_| || | | || |_ \ V V / | (_| || |_ | (__ | | | |
10+
// \_| \_/|_| \__, ||_| |_| \__| \_/\_/ \__,_| \__| \___||_| |_|
11+
// __/ |
12+
// |___/
13+
14+
module.exports = {
15+
// An array of folders (excluding subfolders) where your tests are located;
16+
// if this is not specified, the test source must be passed as the second argument to the test runner.
17+
src_folders: ['test'],
18+
19+
// See https://nightwatchjs.org/guide/concepts/page-object-model.html
20+
page_objects_path: [],
21+
22+
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-commands.html
23+
custom_commands_path: [],
24+
25+
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-assertions.html
26+
custom_assertions_path: [],
27+
28+
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-plugins.html
29+
plugins: [],
30+
31+
// See https://nightwatchjs.org/guide/concepts/test-globals.html
32+
globals_path: '',
33+
34+
webdriver: {},
35+
36+
test_workers: {
37+
enabled: true
38+
},
39+
40+
test_settings: {
41+
default: {
42+
disable_error_log: false,
43+
launch_url: 'https://nightwatchjs.org/',
44+
45+
screenshots: {
46+
enabled: false,
47+
path: 'screens',
48+
on_failure: true
49+
},
50+
51+
desiredCapabilities: {
52+
browserName: 'chrome'
53+
},
54+
55+
webdriver: {
56+
start_process: true,
57+
server_path: ''
58+
},
59+
60+
},
61+
62+
chrome: {
63+
desiredCapabilities: {
64+
browserName: 'chrome',
65+
'goog:chromeOptions': {
66+
// More info on Chromedriver: https://sites.google.com/a/chromium.org/chromedriver/
67+
//
68+
// w3c:false tells Chromedriver to run using the legacy JSONWire protocol (not required in Chrome 78)
69+
w3c: true,
70+
args: [
71+
//'--no-sandbox',
72+
//'--ignore-certificate-errors',
73+
//'--allow-insecure-localhost',
74+
//'--headless'
75+
]
76+
}
77+
},
78+
79+
webdriver: {
80+
start_process: true,
81+
server_path: '',
82+
cli_args: [
83+
// --verbose
84+
]
85+
}
86+
},
87+
88+
},
89+
90+
usage_analytics: {
91+
enabled: true,
92+
log_path: './logs/analytics',
93+
client_id: '1d906358-6df8-4c61-ba5a-441f7362b589'
94+
}
95+
96+
};

0 commit comments

Comments
 (0)