-
Notifications
You must be signed in to change notification settings - Fork 130
/
appsettings.json
64 lines (63 loc) · 1.9 KB
/
appsettings.json
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
{
"appSettings": {
"protocol": "http",
"host": "the-internet.herokuapp.com",
"browser": "Chrome",
"url": "",
"PathToChromeDriverDirectory": "",
"PathToFirefoxDriverDirectory": "",
"PathToInternetExplorerDriverDirectory": "",
"PathToEdgeChromiumDriverDirectory": "",
"ChromeBrowserExecutableLocation": "",
"FireFoxBrowserExecutableLocation": "",
"EdgeChromiumBrowserExecutableLocation": "",
"EnableVerboseLoggingChrome": "false",
"PathToChromeDriverLog": "C:\\Temp\\chromedriver.log",
"FirefoxUseLegacyImplementation": "false",
"PathToFirefoxProfile": "",
"RemoteWebDriverHub": "http://localhost:4444/wd/hub",
"remoteTimeout": "300",
"DriverCapabilities": "Chrome",
"longTimeout": "30",
"mediumTimeout": "10",
"shortTimeout": "3",
"ImplicitlyWaitMilliseconds": "200",
"username": "admin",
"password": "admin",
"UseCurrentDirectory": "true",
"DownloadFolder": "TestOutput",
"ScreenShotFolder": "TestOutput",
"PageSourceFolder": "TestOutput",
"FullDesktopScreenShotEnabled": "true",
"SeleniumScreenShotEnabled": "true",
"GetPageSourceEnabled": "true",
"JavaScriptErrorLogging": "false",
"JavaScriptErrorTypes": "SyntaxError,EvalError,ReferenceError,RangeError,TypeError,URIError,Refused to display,Internal Server Error,Cannot read property",
"EnableEventFiringWebDriver": "false",
"DataDrivenFile": "DataDriven\\DataDriven.xml",
"DataDrivenFileCSV": "DataDriven\\TestDataCsv.csv",
"DataDrivenFileXlsx": "DataDriven\\DataDriven.xlsx"
},
"FirefoxPreferences": {
},
"FirefoxExtensions": {
},
"FirefoxArguments": {
},
"ChromePreferences": {
},
"ChromeExtensions": {
},
"DriverCapabilities": {
},
"ChromeArguments": {
},
"InternetExplorerPreferences": {
},
"EdgeChromiumPreferences": {
},
"EdgeChromiumExtensions": {
},
"EdgeChromiumArguments": {
}
}