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