-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathwdio.lambdatest.conf.ts
63 lines (61 loc) · 1.8 KB
/
wdio.lambdatest.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { config as sharedConfig } from './wdio.shared.conf';
export const config = {
...sharedConfig,
...{
services: [
["lambdatest",
{
tunnel: false,
lambdatestOpts: {
logFile: "tunnel.log"
}
}
]
],
user: process.env.LT_USERNAME,
key: process.env.LT_ACCESS_KEY,
capabilities: [
{
"LT:Options": {
browserName: "Edge",
version: "latest",
name: "Test WebdriverIO Single",
build: "WebDriver Selenium Sample"
}
},
{
"LT:Options": {
browserName: "chrome",
version: "latest",
name: "Test WebdriverIO Single",
build: "WebDriver Selenium Sample"
}
},
{
"LT:Options": {
browserName: "safari",
version: "latest",
name: "Test WebdriverIO Single",
build: "WebDriver Selenium Sample"
}
},
{
"LT:Options": {
browserName: "firefox",
version: "latest",
name: "Test WebdriverIO Single",
build: "WebDriver Selenium Sample"
}
}
],
logLevel: "info",
coloredLogs: true,
screenshotPath: "./errorShots/",
waitforTimeout: 100000,
connectionRetryTimeout: 90000,
connectionRetryCount: 1,
path: "/wd/hub",
hostname: process.env.LT_HOST_URL,
port: 80
}
}