forked from LambdaTest/specflow-selenium-hyperexecute-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.config
89 lines (75 loc) · 3.99 KB
/
App.config
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="capabilities">
<section name="single" type="System.Configuration.AppSettingsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<section name="parallel" type="System.Configuration.AppSettingsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</sectionGroup>
<sectionGroup name="environments">
<section name="chrome" type="System.Configuration.AppSettingsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<section name="firefox" type="System.Configuration.AppSettingsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<section name="safari" type="System.Configuration.AppSettingsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<section name="edge" type="System.Configuration.AppSettingsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<section name="opera" type="System.Configuration.AppSettingsSection, System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</sectionGroup>
<section name="specFlow" type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, TechTalk.SpecFlow" />
</configSections>
<appSettings>
<add key="username" value="LT_USERNAME" />
<add key="accesskey" value="LT_ACCESS_KEY" />
<add key="server" value="@hub.lambdatest.com" />
</appSettings>
<capabilities>
<single>
<add key="build" value="Serial test using SpecFlow on LambdaTest Selenium Grid" />
<add key="name" value="Serial test using SpecFlow on LambdaTest Selenium Grid" />
<add key="idleTimeout" value="270" />
</single>
<parallel>
<add key="build" value="Parallel test using SpecFlow on LambdaTest Selenium Grid" />
<add key="name" value="Parallel test using SpecFlow on LambdaTest Selenium Grid" />
<add key="idleTimeout" value="270" />
</parallel>
</capabilities>
<environments>
<chrome>
<add key="browserName" value="Chrome" />
<add key="browserVersion" value="latest-2" />
<add key="platformName" value="Windows 10" /> <!--value=Linux if running on the linux operating system -->
</chrome>
<firefox>
<add key="browserName" value="Firefox" />
<add key="browserVersion" value="latest" />
<add key="platformName" value="Windows 10" /> <!--value=Linux if running on the linux operating system -->
</firefox>
<safari>
<add key="browserName" value="Safari" />
<add key="browserVersion" value="latest" />
<add key="platformName" value="Windows 10" /> <!--value=Linux if running on the linux operating system -->
</safari>
<edge>
<add key="browserName" value="MicrosoftEdge" />
<add key="browserVersion" value="latest" />
<add key="platformName" value="Windows 10" /> <!--value=Linux if running on the linux operating system -->
</edge>
<opera>
<add key="browserName" value="Opera" />
<add key="browserVersion" value="latest" />
<add key="platformName" value="Windows 10" /> <!--value=Linux if running on the linux operating system -->
</opera>
</environments>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v3.11.0" />
</startup>
<specFlow>
<language feature="en-us" />
</specFlow>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>