-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwdio.multiremote.conf.ts
45 lines (45 loc) · 1.32 KB
/
wdio.multiremote.conf.ts
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
export const config: WebdriverIO.Config = {
specs: ['./multiremote/multiremote.test.ts'],
maxInstances: 10,
capabilities: {
browserA: {
capabilities: {
browserName: 'chrome',
'goog:chromeOptions': {
args: [
'--headless',
'--no-sandbox',
'--disable-dev-shm-usage',
'--enable-precise-memory-info',
'--window-size=1280,900',
],
},
},
},
browserB: {
capabilities: {
browserName: 'chrome',
'goog:chromeOptions': {
args: [
'--headless',
'--no-sandbox',
'--disable-dev-shm-usage',
'--enable-precise-memory-info',
'--window-size=1280,900',
],
},
},
},
},
logLevel: 'info',
bail: 0,
baseUrl: 'https://the-internet.herokuapp.com',
waitforTimeout: 10000,
connectionRetryTimeout: 120000,
connectionRetryCount: 3,
framework: 'jasmine',
reporters: ['spec'],
jasmineOpts: {
defaultTimeoutInterval: 60000,
},
}