public static void BeforeFeature() { Reporting.CreateTestFeature(FeatureContext.Current.FeatureInfo.Title); }
public static void BeforeScen() { Reporting.CreateScenarionNode(ScenarioContext.Current.ScenarioInfo.Title); }
public static void EndTest() { Reporting.flush(); }
public static void reportSteps() { Reporting.StepPassFail(ScenarioStepContext.Current.StepInfo.StepDefinitionType.ToString(), ScenarioStepContext.Current.StepInfo.Text.ToString(), Reporter.GetStepPassed <string>("StepStatus")); }
public static void startup() { Parameters.SetData("ConsoleOutput", string.Empty); Reporting.initialize_report("WINNDOWS", "CHROME", "Lores"); }