Navigate to Specflow step from within Step Definitions
问题 So I have a few tests where i've reused steps from within steps. But i'm now having a nightmare on the maintenance front, in that I cant easily navigate between the steps. Here's an example: [Given(@"I have an order")] public void GivenIHaveAnOrder() { Given("an open store"); Given("I am an existing customer"); Given("I am on homepage"); When("I search for a component"); When("I add the component to my basket"); } How do I navigate to one of those internal steps? If I wanted to navigate to