16 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
2
answers
180
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
156
views
System.InvalidOperationException : Sequence contains more than one element for DotNet Testcontainer
Error Log:
Standard Output Messages:
[testcontainers.org 00:00:03.98] Reuse is an experimental feature. For more information, visit: https://dotnet.testcontainers.org/api/resource_reuse/
-> warning:...
0
votes
2
answers
79
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
403
views
Add Reqnroll to an existing Microsoft Tests project doesn't execute the tests
I have an existing project built with MSTest version 3.6.4 and Microsoft.NET.Test.Sdk 17.12.0 with all my unit tests.
I added Reqnroll to the project, and I created a feature. After the first build, I ...
0
votes
0
answers
58
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 ...
1
vote
0
answers
384
views
How create pipeline for Reqnroll tests and publish
I want to start using Reqnroll in my projects to test the code based on the business requirements. I saw a repository created by the team on GitHub.
Now, I'm trying to create a pipeline for it, and I ...
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 ...
0
votes
0
answers
118
views
Unable to using createnode in extent reports
Beforefeature ---
ExtentTest feature = extentReports.CreateTest<Feature>("Name of Feature");
Before Scenario
ExtentTest scenario = feature.CreateNode<Scenario>("Name of ...
1
vote
0
answers
79
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 ...
1
vote
0
answers
320
views
Using ReqNRoll with Rider IDE and some test dont have run button
I am having issue with running Cucumber / Gherkin some tests. Some of the tests dont have the run button next to it and trying to figure out why ???
I have done:
ReInstall all plugings
Removed the tag ...
0
votes
0
answers
561
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
875
views
Trying to build a custom Retry tag for Reqnroll Gherkin syntax
I am tyrying to build a custom Retry Hook for use with Reqnroll (the newer Specflow), and I am having some difficulty re-running the test. I am curios how I can actually re-run the same test on ...
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.
...
0
votes
0
answers
2k
views
Problems with Reqnroll test generation
I have created a functional test solution for my .Net application using NUnit3 and Reqnroll (formerly SpecFlow: the project was initially created using SpecFlow, later migrated to Reqnroll).
Solution ...
2
votes
0
answers
144
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;
...