public ActionResult SaveGlobalBlindspots(SaveGlobalBlindRegionsDTO dto) { this.testCaseService.SaveGlobalBlindregions(dto); return(ActionResultFactory.AjaxSuccess()); }
public ActionResult SaveBlindRegions([FromBody] SaveBlindRegionsDTO dto) { this.testCaseService.SaveBlindRegions(dto); return(ActionResultFactory.AjaxSuccess()); }
public ActionResult MarkAllAsPattern(long testSessionId, string browserName) { this.testResultService.MarkAllAsPattern(testSessionId, browserName); return(ActionResultFactory.AjaxSuccess()); }