-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.WebDriverFactoryIntegrationTests.json
More file actions
35 lines (35 loc) · 1.57 KB
/
appsettings.WebDriverFactoryIntegrationTests.json
File metadata and controls
35 lines (35 loc) · 1.57 KB
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
{
"__Description__": "This configuration file is used by WebDriverFactoryIntegrationTests. It describes a number of WebDriver config scenarios which will be tested.",
"WebDriverFactory": {
"DriverConfigurations": {
"DefaultFake": {
"DriverType": "RemoteWebDriver",
"OptionsType": "ChromeOptions",
"GridUrl": "invalid://127.0.0.1/no-http-request/should-be-made",
"DriverFactoryType": "CSF.Extensions.WebDriver.Factories.WebDriverFactoryIntegrationTests+FakeWebDriverFactory, CSF.Extensions.WebDriver.Tests"
},
"DefaultInvalid": {
"DriverType": "RemoteWebDriver",
"OptionsType": "ChromeOptions",
"GridUrl": "invalid://127.0.0.1/no-http-request/should-be-made"
},
"DefaultNonsense": {
"DriverType": "RemoteWebDriver",
"OptionsType": "ChromeOptions",
"GridUrl": "nonsense://127.0.0.1/no-http-request/should-be-made"
},
"OmittedDriverAndOptionsType": {
"DriverFactoryType": "CSF.Extensions.WebDriver.Factories.WebDriverFactoryIntegrationTests+FakeWebDriverFactory, CSF.Extensions.WebDriver.Tests"
},
"Chrome": {
"DriverType": "ChromeDriver",
"AddBrowserQuirks": "True"
},
"Firefox": {
"DriverType": "FirefoxDriver",
"AddBrowserQuirks": "True"
}
},
"SelectedConfiguration": "DefaultInvalid"
}
}