16 questions
1
vote
2
answers
150
views
Is there a better way to replace placeholders in DataTable (Reqnroll) with [StepArgumentTransformation]?
I am using Reqnroll in an ASP.NET Core MVC app written in C#.
I have the following scenario:
Szenario: Passwort zurücksetzen und anmelden
Wenn ich auf Passwort vergessen klicke
Und meine Email eingebe
...
0
votes
2
answers
70
views
Text box value not getting cleared correctly
I have a text field with "textA", I simply want to clear the text and enter "textB"
I have used
TextField.clear() and
TextField.SendKeys(Keys.Control + "a");
TextField....
0
votes
0
answers
51
views
Flaui is not capturing external list items after migrating from specflow to reqnroll
We are using SpecFlow + flaui in our project to automate a Windows application.
Recently, SpecFlow has been deprecated, so we started migrating from SpecFlow to Reqnroll (which is similar).
After a ...
2
votes
1
answer
1k
views
Specflow to Reqnroll conversion scenario outline question
With the demise of Specflow we have completed a test conversion of one of our test projects to Reqnroll.
All appears to be working very well with 1 annoying situation involving Scenario Outline's
They ...
1
vote
0
answers
77
views
Should Visual Studio "Code Cleanup" format gherkin files?
Hello fellow programmers!
I started to use Code Cleanup Visual Studio feature recently, but have noticed something inconsistent.
We are using Reqnroll (formerly known as Specflow) in our project ...
0
votes
0
answers
538
views
Reqnroll extract step definitions
please tell me how i can extract all possible steps in Reqnroll, I looked at the documentation but did not find this, now in our tests steps are extracted using reflection, but there must be a normal ...
1
vote
1
answer
1k
views
Reqnroll Allure report generation problems
I have a test solution, built on:
.NET Framework 4.7.2
NUnit 3.13
Reqnroll 2.0.0
Allure.Reqnroll 2.12.1
AllureReport.Generator 0.1.0
My solution builds, discovers and executes the tests as expected.
...
2
votes
0
answers
134
views
How to register a custom ITraceListener in SpecFlow 3.9.74
We are upgrading from specflow 1.something to version 3.9.74. I'm having some trouble getting our custom TraceListener to work.
This is the code of the IRuntimePlugin:
using TechTalk.SpecFlow.Plugins;
...