├── MS-Test-Cross-Browser.csproj ├── README.md ├── bin └── Debug │ └── netcoreapp3.0 │ ├── MS-Test-Cross-Browser.deps.json │ ├── MS-Test-Cross-Browser.dll │ ├── MS-Test-Cross-Browser.pdb │ ├── MS-Test-Cross-Browser.runtimeconfig.dev.json │ ├── MS-Test-Cross-Browser.runtimeconfig.json │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ ├── Microsoft.TestPlatform.Utilities.dll │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── Newtonsoft.Json.dll │ ├── NuGet.Frameworks.dll │ ├── WebDriver.dll │ ├── chromedriver.exe │ ├── cs │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── de │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── es │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── fr │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── geckodriver.exe │ ├── it │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── ja │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── ko │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── pl │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── pt-BR │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── ru │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── testhost.dll │ ├── tr │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ ├── zh-Hans │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── zh-Hant │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll ├── obj ├── Debug │ └── netcoreapp3.0 │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ ├── MS-Test-Cross-Browser.AssemblyInfo.cs │ │ ├── MS-Test-Cross-Browser.AssemblyInfoInputs.cache │ │ ├── MS-Test-Cross-Browser.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── MS-Test-Cross-Browser.assets.cache │ │ ├── MS-Test-Cross-Browser.csproj.AssemblyReference.cache │ │ ├── MS-Test-Cross-Browser.csproj.CoreCompileInputs.cache │ │ ├── MS-Test-Cross-Browser.csproj.FileListAbsolute.txt │ │ ├── MS-Test-Cross-Browser.dll │ │ └── MS-Test-Cross-Browser.pdb ├── MS-Test-Cross-Browser.csproj.nuget.cache ├── MS-Test-Cross-Browser.csproj.nuget.dgspec.json ├── MS-Test-Cross-Browser.csproj.nuget.g.props ├── MS-Test-Cross-Browser.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache └── src └── test ├── LocalMSTest.cs └── utilities ├── Browser.cs └── WebDriverInfra.cs /MS-Test-Cross-Browser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/MS-Test-Cross-Browser.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/README.md -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.deps.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.pdb -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.runtimeconfig.dev.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/MS-Test-Cross-Browser.runtimeconfig.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/WebDriver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/WebDriver.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/chromedriver.exe -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/geckodriver.exe -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/testhost.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/.NETCoreApp,Version=v3.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/Debug/netcoreapp3.0/.NETCoreApp,Version=v3.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 84db1aad1a3ba2e0c8569e1bf1ddf65b53f1a195 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.assets.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 95bad81113fca108002420b6f7ccf746e4ed489e 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.dll -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/Debug/netcoreapp3.0/MS-Test-Cross-Browser.pdb -------------------------------------------------------------------------------- /obj/MS-Test-Cross-Browser.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/MS-Test-Cross-Browser.csproj.nuget.cache -------------------------------------------------------------------------------- /obj/MS-Test-Cross-Browser.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/MS-Test-Cross-Browser.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/MS-Test-Cross-Browser.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/MS-Test-Cross-Browser.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/MS-Test-Cross-Browser.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/MS-Test-Cross-Browser.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/test/LocalMSTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/src/test/LocalMSTest.cs -------------------------------------------------------------------------------- /src/test/utilities/Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/src/test/utilities/Browser.cs -------------------------------------------------------------------------------- /src/test/utilities/WebDriverInfra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdaTest/MSTest-Selenium-Sample/HEAD/src/test/utilities/WebDriverInfra.cs --------------------------------------------------------------------------------