Chris Rudolphi
Chris Rudolphi
SpecFlow v3 has the ability for a step to call/invoke another. See the documentation [here:](https://docs.specflow.org/projects/specflow/en/latest/Bindings/Calling-Steps-from-Step-Definitions.html) This feature is deprecated however and removed from v4 (the documentation explains why). If you're...
Yes, this is possible, but you will have to do some of the work. As described in the docs here: [ScenarioContext](https://docs.specflow.org/projects/specflow/en/latest/Bindings/ScenarioContext.html) use context injection to obtain the ScenarioContext object in...
Yes, your concern there is valid. The ExternalDataSource plugin will provide "examples" to the Scenario which end up being generated as individual test cases in the Test Explorer. At least,...
I will look into this for you. You are using dotnet test, is that correct? What options are used when executing dotnet test? Are you specifying a logger or verbosity...
I have set up a project to test this behavior (using the default Calculator feature file). When I execute it using vstest.console.exe, using /logger:"console;verbosity:quiet", I get the following console output:...
Current behavior depends upon the combination of trace settings in the specflow.json file and the verbosity setting used when invoking the test runner (dotnet test, or vstest.console). There are four...
> much to me but I really need a way to keep the feature file out of my log When using a verbosity level of quiet or minimal, the scenario...
> '(?: and wait)?' also doesn't work '(?: and wait)? does work in [Reqnroll](https://reqnroll.net/) , can you migrate to Reqnroll?
This error results from attempting to resolve the FeatureContext and/or the ScenarioContext as parameters of the BeforeTestRun hook. Those objects aren't available at that time in the sequence of execution....
For clarification of my understanding, what behavior should be expected? As I understand them, AggregateExceptions are carriers of the collection of Exceptions that occurred. They are not (usually) expected to...