Пример #1
0
 private static void AddSnapShots(StringBuilder builder, SubFlowStep step)
 {
     foreach (ScreenShot path in step.ScreenShots)
     {
         builder.AppendLine("<a href=\"#\" onclick=\"openScreen('" + path.SnapShotPath.Replace("\\", "/") + "')\"><img height=\"50\" width=\"50\" src=\"" +
                            path.ThumbNailPath.Replace("\\", "/") + "\"></img></a>");
     }
 }
Пример #2
0
 private static void AddTimeStamp(StringBuilder builder, SubFlowStep step)
 {
     builder.AppendLine("<div class=\"direction\">=(" + step.TimeSpent + ")=></div>");
 }