-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwdio.conf.js
103 lines (87 loc) · 2.88 KB
/
wdio.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
93
94
95
96
97
98
99
100
101
102
103
require('./log4js-config').init();
const log = require('log4js').getLogger('wdio-config');
const wdioConfig = {
runner: 'local',
specs: [
'./specs/**/*.js'
],
maxInstances: 1,
// http://chromedriver.chromium.org/capabilities
capabilities: [{
maxInstances: 1,
browserName: 'chrome',
acceptInsecureCerts: true,
// 'goog:chromeOptions': {
// 'excludeSwitches': ['disable-popup-blocking'],
// prefs: {
// allowAllCookies: true,
// 'profile.default_content_settings.cookies': 2,
// 'profile.default_content_setting_values.notifications': 2,
// 'profile.default_content_settings.popups': 2,
// 'network.cookie.cookieBehavior': 2,
// 'profile.default_content_setting_values.cookies': 2,
// 'profile.block_third_party_cookies': true,
// }
// }
}],
logLevel: 'info',
bail: 0,
baseUrl: 'https://www.leaseplan.com/en-be/',
// Default timeout for all waitFor* commands.
waitforTimeout: 10000,
// Default timeout in milliseconds for request
// if browser driver or grid doesn't send response
connectionRetryTimeout: 120000,
// Default request retries count
connectionRetryCount: 3,
services: [],
framework: 'mocha',
reporters: ['spec',
['allure', {
outputDir: 'allure-results',
disableWebdriverStepsReporting: true,
disableWebdriverScreenshotsReporting: false,
}]
],
mochaOpts: {
ui: 'bdd',
timeout: 120000
},
beforeSession: function (config, capabilities, specs) {
if (process.env.DEBUG === '1') {
// Giving debugger some time to connect...
return new Promise(resolve => setTimeout(resolve, 5000));
}
},
before: function (capabilities, specs) {
browser.setWindowSize(1600, 1000);
},
afterTest: function (test, context, { error, result, duration, passed, retries }) {
browser.takeScreenshot();
},
afterStep: function(test, context, { error, result, duration, passed, retries }) {
if (error) {
browser.takeScreenshot();
}
},
}
if (process.env.SELENIUM_HUB_HOST) {
wdioConfig.hostname = process.env.SELENIUM_HUB_HOST;
wdioConfig.port = 4444;
wdioConfig.path = '/wd/hub'
} else {
wdioConfig.services = ["chromedriver"];
}
if (process.env.GITLAB_CI) {
wdioConfig.connectionRetryTimeout = 240000;
wdioConfig.mochaOpts.timeout = 240000;
}
if (process.env.DEBUG === '1') {
console.log('###### Running in debug mode! ######');
wdioConfig.maxInstances = 1;
wdioConfig['execArgv'] = ['--inspect=127.0.0.1:5858'];
wdioConfig.mochaOpts.timeout = 360000;
}
log.info('running wdio with config file:');
log.info(wdioConfig);
exports.config = wdioConfig;