I have a SpecFlow test that fails if you run it enough time. How can I take an existing SpecFlow test and make it work endlessly until it works? (Ideally, I would like to calculate how many times it will take.)
My initial guess was to just call the binding methods, which the script test ultimately calls, but I keep getting null pointer exceptions. SpecFlow seems to initialize what I don't know.
My next assumption was to try to run the automatically generated code for the test function, but it seems like it needs all kinds of data from the SpecFlow framework, which I donβt know how to generate.
All I want to do is run the test several times. Is there really got to be some way to accomplish this completely trivial task?
source share