[SpecFlow+ LivingDoc] Enable unbound scenarios to flag test as Passed for manual testing purposes
is it possible to mark unimplemented tests as passed and update the information on the analytcs tab?
-
You can use scoped bindings for this.
Example:
[Binding, Scope(Tag = "manual")] public class ManualSteps { [Given(".*"), When(".*"), Then(".*")] public void EmptyStep() { } [Given(".*"), When(".*"), Then(".*")] public void EmptyStep(string multiLineStringParam) { } [Given(".*"), When(".*"), Then(".*")] public void EmptyStep(Table tableParam) { } }
When you now tag a scenario with @manual, the implementation above is used and so everything is green. And so it will also be displayed in LivingDoc.
0 -
I mean, I would like to use Living doc as a test managegment as well, instead of creating Test Plan on azure and managing execution of manual testing separatelly , we would like to know if it is possible to improve this feature on living documentation.
0 -
Could you elaborate more on the feature you would like to see?
I am not sure I understand what you would like to see in SpecFlow+ LivingDoc.
0 -
I would like to know if it's possible to add a button toggle on the scenarios to change the status to passed or failed manually, it will be very helpful to manage the manual test execution as we use to use to do on the Test Plan of azure devops.
But this changes should be updated on the analytcs tab as well.
0 -
Ah, now I got it.
It is not possible at the moment, so I am moving this conversion to the feature request board.
1 -
Hi, we want similar feature than this to track our manuals tests.. Any ideas for the roadmap ?
0 -
This feature would be very useful to track manual tests.
0
Please sign in to leave a comment.
Comments
7 comments