PageRenderTime 46ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/V2/trunk/Quickstarts/UI Composition/UIComposition.Tests.AcceptanceTest/UIComposition.Tests.AcceptanceTest/App.config

#
ASP.NET | 54 lines | 40 code | 5 blank | 9 comment | 0 complexity | 895eb5e6ff34fd20a2a8970f6b427d11 MD5 | raw file
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <configSections>
  4. <sectionGroup name="BrowserSupport">
  5. <section name="Browsers" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null" />
  6. </sectionGroup>
  7. <sectionGroup name="White">
  8. <section name="Core" type="System.Configuration.NameValueSectionHandler"/>
  9. </sectionGroup>
  10. </configSections>
  11. <appSettings>
  12. <!-- Application path for ViewInjection UI-->
  13. <add key="ViewInjectionWpfAppLocation" value="\BUWPF\UIComposition.exe"/>
  14. <add key="ViewInjectionWpfWpfAppProcessName" value="UIComposition.Desktop"/>
  15. <add key="ViewInjectionSilverlightAppLocation" value ="\BS\TestPage.html"/>
  16. <!-- Application path for ViewDiscovery UI-->
  17. <add key="ViewDiscoveryWpfAppLocation" value="\TDWPF\UIComposition.exe"/>
  18. <add key="ViewDiscoverySilverlightAppLocation" value ="\TS\TestPage.html"/>
  19. <!-- Browser Path and process parameters -->
  20. <add key="IEPartialPath" value="\\Internet Explorer\iexplore.exe"/>
  21. <add key ="FirefoxPartialPath" value ="\\Mozilla Firefox\firefox.exe"/>
  22. <add key ="SafariPartialPath" value ="\\Safari\Safari.exe"/>
  23. <add key="IEAppProcessName" value="iexplore"/>
  24. <add key="FirefoxAppProcessName" value="firefox"/>
  25. <add key="SafariAppProcessName" value ="Safari"/>
  26. <!-- Time to wait for the application to be launched -->
  27. <add key="ApplicationLoadWaitTime" value="60000"/>
  28. <!-- Test Data config files -->
  29. <add key="TestDataInputFile" value=".\TestData\TestDataInput.resx"/>
  30. <add key="ControlIdentifiersFile" value=".\TestData\ControlIdentifiers.resx"/>
  31. </appSettings>
  32. <!-- Config section for Cross-Browser support -->
  33. <BrowserSupport>
  34. <Browsers>
  35. <add key ="InternetExplorer" value ="AcceptanceTestLibrary.Common.CrossBrowserSupport.InternetExplorerLauncher" />
  36. <!--<add key="FireFox" value ="AcceptanceTestLibrary.Common.CrossBrowserSupport.FirefoxLauncher" />-->
  37. <!--<add key ="Safari" value ="AcceptanceTestLibrary.Common.CrossBrowserSupport.SafariLauncher" />-->
  38. </Browsers>
  39. </BrowserSupport>
  40. <!-- white configuration parameters -->
  41. <White>
  42. <Core>
  43. <add key="PopupTimeout" value="30000" />
  44. <add key="SuggestionListTimeout" value="30000" />
  45. <add key="BusyTimeout" value="30000" />
  46. <add key="UIAutomationZeroWindowBugTimeout" value="30000" />
  47. </Core>
  48. </White>
  49. </configuration>