SpecRun is an integration test runner for SpecFlow.
Questions tagged [specrun]
101 questions
0
votes
0 answers
vstest.console.exe --testcasefilter:"FullyQualifiedName=Namespace.classname is not working
I'm a newbie in vstest and I'm trying to run the specflow feature file from command line. I've used the below command but's it's not working for me.
Below is the namespace and class name:
namespace PE.Feature.Preconditions.DeleteData
{
public…

adityashivankar
- 21
- 9
0
votes
1 answer
Is there any wa that I can publish failure history of failed test scenarios in html report with SpecFlow+SpecRun?
Can we publish the details of failed test cases statistics in HTML report of SpecRun?
Example: Analytics of failed test cases in previous executions.
If one test scenario is failing from the past 5 runs, In Error Details section of specrun report,…

Anusha
- 1
- 1
0
votes
1 answer
SpecFlow does not discover tests or I get an error message
For starters: I am new to Visual Studio and SpecFlow in general.
Following the getting started documentation on SpecFlow I get 2 different outcomes depending on what type of project I start.
Unit Test Project: in this type of projects, the test's…

Martin Rashev
- 3
- 3
0
votes
1 answer
Is it possible to have Nunit and SpecRun as UnitTestProviders at one time.?
For Parallel Test Execution I need "NUnit" but I also like reports from SpecRun.
Can anyone please help me to guide How to mention two UnitTestProviders in App.config.?

Priya
- 39
- 2
- 5
0
votes
1 answer
Getting spinny and some extra delay during my Selenium Specflow tests in Visual Studio 17
I upgraded to Specrun 1.7.1, and I have Specflow 2.3.0. One thing I noticed this after the upgrade, I am getting this extra spinny icon adjacent to a test when I run a single test in VS Test Explorer. I also noticed that this same icon next to the…

user5199
- 359
- 2
- 15
0
votes
1 answer
Overriding TestSetting Parameters with *.RunSettings in VSTS build with SpecRun
Just been googling around and found , parameters can't be overridden with SpecRun in VSTS build's VSTest task when using *.RunSettings. Just wondering if anyone has successfully does it before?

InTheWorldOfCodingApplications
- 2,526
- 6
- 46
- 87
0
votes
1 answer
SpecFlow Parallel and non Parallel tests
I'm using SpecFlow to automate my web tests and using parallel execution to speed them up.
The issue i have is that one test which checks that invalid passwords are rejected will lock the user account if run 3 times without a successful login.
I've…

LiamHarries
- 570
- 1
- 5
- 20
0
votes
1 answer
SpecRun: How to run tests filtering by .feature file
I am trying to run tests using SpecRun. I would like to run them using the .feature file, but so far I have not succeeded :(
I am using this as a filter:
/filter:testpath:Feature:FeatureFile.feature
but no tests are run.
How can I do to specify a…

user3034422
- 13
- 3
0
votes
2 answers
Share data between specflow scenarios
In our application i need to open 3 absolutely same documents, for each document i have a button with unique locator, as we are executing tests in parallel i need to know which document already opened and open another one which is not used, i'm not…

Shilovskoye Moloko
- 93
- 1
- 2
- 14
0
votes
1 answer
Need to execute test in parallel in spec run
How I can run my automation scripts parallel. My code is in C#.net using specflow.
I have changed my unit test provider as below:
…

jayesh mhatre
- 77
- 1
- 1
- 6
0
votes
2 answers
Specrun - delay of threads
I have a tests written in c#, I am using SpecRun version 1.5.2.
Part of my Default.srprofile looks as follows:
There is a…

madoxdev
- 3,770
- 1
- 24
- 39
0
votes
1 answer
Specflow parallel execution of categories [Tags]
I have about 6000 specflow [version 1.9.0.77] tests and those tests are split across 10 categories [tags], roughly 600 test cases per categories and takes about an hour to complete. Currently I’m using Nunit 2.6.4 to execute the tests [executing…

Rohit12
- 43
- 4
0
votes
2 answers
Is there anyway we can create test suite of feature files in Specflow similar to TestNG?
Trying to create a test suite , in which I do not want to include all the feature files. Is that possible? This is in the lines of TestNG.xml test suite. Does Specflow provide any such feature? Is there any documentation for tags in…

UNG
- 673
- 1
- 6
- 17
0
votes
1 answer
In SpecFlow SpecRun, How to run Specrun.exe instead of runtests.cmd using a .bat file?
I know runtests.cmd works from a .bat file using "C:\Users\username\Documents\Visual Studio 2015\Projects\blah\blahblah\runtests.cmd" .
But since I have a MSBuild step in my Team City setup, I do not want to rerun the build step which is trigggered…

UNG
- 673
- 1
- 6
- 17
0
votes
0 answers
Specrun Command Line Filter by name of feature
How to run Specrun using a filter of feature's name
Fragment of Default.srprofile:
smth.dll
Cmd:
SpecRun.exe run…

Gene
- 21
- 4