├── .vs └── SpecFlowBDDAutomationFramework │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── project-colors.json │ └── v17 │ ├── .futdcache.v1 │ ├── .suo │ └── TestStore │ └── 1 │ ├── 004.testlog │ └── testlog.manifest ├── Features ├── Calculator.feature ├── Calculator.feature.cs ├── DataDrivenTesting.feature ├── DataDrivenTesting.feature.cs ├── DataTableDataDrivenTesting.feature ├── DataTableDataDrivenTesting.feature.cs ├── ExamplesDataDrivenTesting.feature ├── ExamplesDataDrivenTesting.feature.cs ├── Feature1.feature ├── Feature1.feature.cs ├── PageObjectModel.feature └── PageObjectModel.feature.cs ├── Hooks └── Hooks.cs ├── ImplicitUsings.cs ├── Pages ├── ChannelPage.cs ├── ResultPage.cs └── SearchPage.cs ├── README.md ├── SpecFlowBDDAutomationFramework.csproj ├── SpecFlowBDDAutomationFramework.csproj.user ├── SpecFlowBDDAutomationFramework.sln ├── StepDefinitions ├── CalculatorStepDefinitions.cs ├── DataDrivenTestingStepDefinitions.cs ├── DataTableDataDrivenTestingStepDefinitions.cs ├── ExamplesDataDrivenTestingStepDefinitions.cs ├── Feature1StepDefinitions.cs └── PageObjectModelStepDefinitions.cs ├── TestResults ├── PageObjectModel.png └── index.html ├── Utility └── ExtentReport.cs ├── bin └── Debug │ └── net6.0 │ ├── BoDi.dll │ ├── DnsClient.dll │ ├── ExtentReports.dll │ ├── FluentAssertions.dll │ ├── Gherkin.dll │ ├── LivingDoc.Dtos.dll │ ├── LivingDoc.SpecFlowPlugin.dll │ ├── LivingDoc.html │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ ├── Microsoft.AspNetCore.Connections.Abstractions.dll │ ├── Microsoft.AspNetCore.Diagnostics.Abstractions.dll │ ├── Microsoft.AspNetCore.Diagnostics.dll │ ├── Microsoft.AspNetCore.HostFiltering.dll │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ ├── Microsoft.AspNetCore.Hosting.dll │ ├── Microsoft.AspNetCore.Html.Abstractions.dll │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ ├── Microsoft.AspNetCore.Http.Features.dll │ ├── Microsoft.AspNetCore.Http.dll │ ├── Microsoft.AspNetCore.HttpOverrides.dll │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.AspNetCore.Razor.Runtime.dll │ ├── Microsoft.AspNetCore.Razor.dll │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ ├── Microsoft.AspNetCore.Routing.dll │ ├── Microsoft.AspNetCore.Server.IIS.dll │ ├── Microsoft.AspNetCore.Server.IISIntegration.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.Core.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.Https.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll │ ├── Microsoft.AspNetCore.Server.Kestrel.dll │ ├── Microsoft.AspNetCore.WebUtilities.dll │ ├── Microsoft.AspNetCore.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Binder.dll │ ├── Microsoft.Extensions.Configuration.CommandLine.dll │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ ├── Microsoft.Extensions.Configuration.Json.dll │ ├── Microsoft.Extensions.Configuration.UserSecrets.dll │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.DependencyModel.dll │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.Configuration.dll │ ├── Microsoft.Extensions.Logging.Console.dll │ ├── Microsoft.Extensions.Logging.Debug.dll │ ├── Microsoft.Extensions.Logging.EventSource.dll │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.ObjectPool.dll │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Net.Http.Headers.dll │ ├── 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.ObjectModel.dll │ ├── MongoDB.Bson.dll │ ├── MongoDB.Driver.Core.dll │ ├── MongoDB.Driver.dll │ ├── MongoDB.Libmongocrypt.dll │ ├── NUnit3.TestAdapter.dll │ ├── NUnit3.TestAdapter.pdb │ ├── Newtonsoft.Json.dll │ ├── NuGet.Frameworks.dll │ ├── RazorEngine.NetCore.dll │ ├── SharpCompress.dll │ ├── SpecFlow.Internal.Json.dll │ ├── SpecFlowBDDAutomationFramework.deps.json │ ├── SpecFlowBDDAutomationFramework.dll │ ├── SpecFlowBDDAutomationFramework.pdb │ ├── SpecFlowBDDAutomationFramework.runtimeconfig.json │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.IO.Pipelines.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.Security.Permissions.dll │ ├── TechTalk.SpecFlow.NUnit.SpecFlowPlugin.dll │ ├── TechTalk.SpecFlow.dll │ ├── TestExecution.json │ ├── WebDriver.dll │ ├── 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 │ ├── 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 │ ├── nunit.engine.api.dll │ ├── nunit.engine.core.dll │ ├── nunit.engine.dll │ ├── nunit.framework.dll │ ├── nunit_random_seed.tmp │ ├── 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 │ ├── ref │ └── SpecFlowBDDAutomationFramework.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 │ ├── runtimes │ ├── win-x64 │ │ └── nativeassets │ │ │ └── netcoreapp2.2 │ │ │ └── aspnetcorev2_inprocess.dll │ ├── win-x86 │ │ └── nativeassets │ │ │ └── netcoreapp2.2 │ │ │ └── aspnetcorev2_inprocess.dll │ └── win │ │ └── lib │ │ └── netstandard2.0 │ │ └── System.Security.Cryptography.ProtectedData.dll │ ├── selenium-manager │ ├── linux │ │ └── selenium-manager │ ├── macos │ │ └── selenium-manager │ └── windows │ │ └── selenium-manager.exe │ ├── testcentric.engine.metadata.dll │ ├── testhost.dll │ ├── testhost.exe │ ├── 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 └── net6.0 │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ ├── NUnit.AssemblyHooks.cs │ ├── SpecFlowBDDAutomationFramework.AssemblyInfo.cs │ ├── SpecFlowBDDAutomationFramework.AssemblyInfoInputs.cache │ ├── SpecFlowBDDAutomationFramework.GeneratedMSBuildEditorConfig.editorconfig │ ├── SpecFlowBDDAutomationFramework.GlobalUsings.g.cs │ ├── SpecFlowBDDAutomationFramework.assets.cache │ ├── SpecFlowBDDAutomationFramework.csproj.AssemblyReference.cache │ ├── SpecFlowBDDAutomationFramework.csproj.BuildWithSkipAnalyzers │ ├── SpecFlowBDDAutomationFramework.csproj.CopyComplete │ ├── SpecFlowBDDAutomationFramework.csproj.CoreCompileInputs.cache │ ├── SpecFlowBDDAutomationFramework.csproj.FileListAbsolute.txt │ ├── SpecFlowBDDAutomationFramework.dll │ ├── SpecFlowBDDAutomationFramework.genruntimeconfig.cache │ ├── SpecFlowBDDAutomationFramework.pdb │ └── ref │ └── SpecFlowBDDAutomationFramework.dll ├── SpecFlowBDDAutomationFramework.csproj.nuget.dgspec.json ├── SpecFlowBDDAutomationFramework.csproj.nuget.g.props ├── SpecFlowBDDAutomationFramework.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.vs/SpecFlowBDDAutomationFramework/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/.vs/SpecFlowBDDAutomationFramework/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/SpecFlowBDDAutomationFramework/project-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/.vs/SpecFlowBDDAutomationFramework/project-colors.json -------------------------------------------------------------------------------- /.vs/SpecFlowBDDAutomationFramework/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/.vs/SpecFlowBDDAutomationFramework/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/SpecFlowBDDAutomationFramework/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/.vs/SpecFlowBDDAutomationFramework/v17/.suo -------------------------------------------------------------------------------- /.vs/SpecFlowBDDAutomationFramework/v17/TestStore/1/004.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/.vs/SpecFlowBDDAutomationFramework/v17/TestStore/1/004.testlog -------------------------------------------------------------------------------- /.vs/SpecFlowBDDAutomationFramework/v17/TestStore/1/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/.vs/SpecFlowBDDAutomationFramework/v17/TestStore/1/testlog.manifest -------------------------------------------------------------------------------- /Features/Calculator.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/Calculator.feature -------------------------------------------------------------------------------- /Features/Calculator.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/Calculator.feature.cs -------------------------------------------------------------------------------- /Features/DataDrivenTesting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/DataDrivenTesting.feature -------------------------------------------------------------------------------- /Features/DataDrivenTesting.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/DataDrivenTesting.feature.cs -------------------------------------------------------------------------------- /Features/DataTableDataDrivenTesting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/DataTableDataDrivenTesting.feature -------------------------------------------------------------------------------- /Features/DataTableDataDrivenTesting.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/DataTableDataDrivenTesting.feature.cs -------------------------------------------------------------------------------- /Features/ExamplesDataDrivenTesting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/ExamplesDataDrivenTesting.feature -------------------------------------------------------------------------------- /Features/ExamplesDataDrivenTesting.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/ExamplesDataDrivenTesting.feature.cs -------------------------------------------------------------------------------- /Features/Feature1.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/Feature1.feature -------------------------------------------------------------------------------- /Features/Feature1.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/Feature1.feature.cs -------------------------------------------------------------------------------- /Features/PageObjectModel.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/PageObjectModel.feature -------------------------------------------------------------------------------- /Features/PageObjectModel.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Features/PageObjectModel.feature.cs -------------------------------------------------------------------------------- /Hooks/Hooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Hooks/Hooks.cs -------------------------------------------------------------------------------- /ImplicitUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/ImplicitUsings.cs -------------------------------------------------------------------------------- /Pages/ChannelPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Pages/ChannelPage.cs -------------------------------------------------------------------------------- /Pages/ResultPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Pages/ResultPage.cs -------------------------------------------------------------------------------- /Pages/SearchPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Pages/SearchPage.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/README.md -------------------------------------------------------------------------------- /SpecFlowBDDAutomationFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/SpecFlowBDDAutomationFramework.csproj -------------------------------------------------------------------------------- /SpecFlowBDDAutomationFramework.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/SpecFlowBDDAutomationFramework.csproj.user -------------------------------------------------------------------------------- /SpecFlowBDDAutomationFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/SpecFlowBDDAutomationFramework.sln -------------------------------------------------------------------------------- /StepDefinitions/CalculatorStepDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/StepDefinitions/CalculatorStepDefinitions.cs -------------------------------------------------------------------------------- /StepDefinitions/DataDrivenTestingStepDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/StepDefinitions/DataDrivenTestingStepDefinitions.cs -------------------------------------------------------------------------------- /StepDefinitions/DataTableDataDrivenTestingStepDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/StepDefinitions/DataTableDataDrivenTestingStepDefinitions.cs -------------------------------------------------------------------------------- /StepDefinitions/ExamplesDataDrivenTestingStepDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/StepDefinitions/ExamplesDataDrivenTestingStepDefinitions.cs -------------------------------------------------------------------------------- /StepDefinitions/Feature1StepDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/StepDefinitions/Feature1StepDefinitions.cs -------------------------------------------------------------------------------- /StepDefinitions/PageObjectModelStepDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/StepDefinitions/PageObjectModelStepDefinitions.cs -------------------------------------------------------------------------------- /TestResults/PageObjectModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/TestResults/PageObjectModel.png -------------------------------------------------------------------------------- /TestResults/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/TestResults/index.html -------------------------------------------------------------------------------- /Utility/ExtentReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/Utility/ExtentReport.cs -------------------------------------------------------------------------------- /bin/Debug/net6.0/BoDi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/BoDi.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/DnsClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/DnsClient.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ExtentReports.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ExtentReports.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/FluentAssertions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Gherkin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Gherkin.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/LivingDoc.Dtos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/LivingDoc.Dtos.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/LivingDoc.SpecFlowPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/LivingDoc.SpecFlowPlugin.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/LivingDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/LivingDoc.html -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Diagnostics.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.HostFiltering.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.HostFiltering.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Hosting.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Html.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Html.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Http.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Http.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Http.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.HttpOverrides.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.HttpOverrides.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Runtime.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Routing.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Routing.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Server.IIS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Server.IIS.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Server.IISIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Server.IISIntegration.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.Server.Kestrel.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.WebUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.WebUtilities.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.AspNetCore.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Logging.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Logging.Configuration.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Logging.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Logging.Console.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Logging.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Logging.EventSource.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/MongoDB.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/MongoDB.Bson.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/MongoDB.Driver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/MongoDB.Driver.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/MongoDB.Driver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/MongoDB.Driver.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/MongoDB.Libmongocrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/MongoDB.Libmongocrypt.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/NUnit3.TestAdapter.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/NUnit3.TestAdapter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/NUnit3.TestAdapter.pdb -------------------------------------------------------------------------------- /bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/RazorEngine.NetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/RazorEngine.NetCore.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/SharpCompress.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/SpecFlow.Internal.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/SpecFlow.Internal.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/SpecFlowBDDAutomationFramework.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/SpecFlowBDDAutomationFramework.deps.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/SpecFlowBDDAutomationFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/SpecFlowBDDAutomationFramework.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/SpecFlowBDDAutomationFramework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/SpecFlowBDDAutomationFramework.pdb -------------------------------------------------------------------------------- /bin/Debug/net6.0/SpecFlowBDDAutomationFramework.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/SpecFlowBDDAutomationFramework.runtimeconfig.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/TechTalk.SpecFlow.NUnit.SpecFlowPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/TechTalk.SpecFlow.NUnit.SpecFlowPlugin.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/TechTalk.SpecFlow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/TechTalk.SpecFlow.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/TestExecution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/TestExecution.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/WebDriver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/WebDriver.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/nunit.engine.api.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/nunit.engine.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/nunit.engine.core.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/nunit.engine.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/nunit.framework.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 1941667171 -------------------------------------------------------------------------------- /bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ref/SpecFlowBDDAutomationFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ref/SpecFlowBDDAutomationFramework.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x64/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/runtimes/win-x64/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x86/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/runtimes/win-x86/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/selenium-manager/linux/selenium-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/selenium-manager/linux/selenium-manager -------------------------------------------------------------------------------- /bin/Debug/net6.0/selenium-manager/macos/selenium-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/selenium-manager/macos/selenium-manager -------------------------------------------------------------------------------- /bin/Debug/net6.0/selenium-manager/windows/selenium-manager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/selenium-manager/windows/selenium-manager.exe -------------------------------------------------------------------------------- /bin/Debug/net6.0/testcentric.engine.metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/testcentric.engine.metadata.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/testhost.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/testhost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/testhost.exe -------------------------------------------------------------------------------- /bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/NUnit.AssemblyHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/NUnit.AssemblyHooks.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/SpecFlowBDDAutomationFramework.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e4454e53a382425ec58607bc3ba47bf7db1661a8 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/SpecFlowBDDAutomationFramework.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/SpecFlowBDDAutomationFramework.GlobalUsings.g.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/SpecFlowBDDAutomationFramework.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/SpecFlowBDDAutomationFramework.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | eed451bd8733ca5aebecf1c1995e643b268fedd1 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/SpecFlowBDDAutomationFramework.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/SpecFlowBDDAutomationFramework.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | c4e1dacce05cf82b82a9275169e86754dcd4ed44 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/SpecFlowBDDAutomationFramework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/SpecFlowBDDAutomationFramework.pdb -------------------------------------------------------------------------------- /obj/Debug/net6.0/ref/SpecFlowBDDAutomationFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/Debug/net6.0/ref/SpecFlowBDDAutomationFramework.dll -------------------------------------------------------------------------------- /obj/SpecFlowBDDAutomationFramework.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/SpecFlowBDDAutomationFramework.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/SpecFlowBDDAutomationFramework.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/SpecFlowBDDAutomationFramework.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/SpecFlowBDDAutomationFramework.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/SpecFlowBDDAutomationFramework.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BakkappaN/SpecFlowBDDAutomationFramework/HEAD/obj/project.nuget.cache --------------------------------------------------------------------------------