-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.js
33 lines (27 loc) · 970 Bytes
/
config.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
module.exports = {
/**The URL of the website to automate */
url: 'http://www.uitestingplayground.com/',
/**The test timeout time (0) = infinity time*/
timeoutTest: 0,
/**The timeout is for command execution */
commandsTimeout: 40000,
/** Available browsers for test execution: [chrome, MicrosoftEdge, firefox] */
browser: ['chrome'],
/** Available environments settings: [local, grid, cicd] */
environment: 'cicd',
/** Paths for browser executable and for driver executable */
pathToChrome: {
EXECUTABLE: "-> FILL THE PATH <-",
DRIVER_EXECUTABLE: "-> FILL THE PATH <-"
},
pathToFirefox: {
EXECUTABLE: "-> FILL THE PATH <-",
DRIVER_EXECUTABLE: "-> FILL THE PATH <-"
},
pathToEdge: {
EXECUTABLE: "-> FILL THE PATH <-",
DRIVER_EXECUTABLE: "-> FILL THE PATH <-"
},
/** Selenium Grid Server */
seleniumGridServerURL: "http://localhost:4444"
}