I have 2 features that use a common \'When\' step but have different \'Then\' steps in different classes.
How do I access, for example, the ActionResult from my MVC
Use the ScenarioContext class which is a dictionary that is common to all the steps.
ScenarioContext.Current.Add("ActionResult", actionResult); var actionResult = (ActionResult) ScenarioContext.Current["ActionResult"];