-
-@foreach (var step in scenario.Steps)
-{
- @step.DisplayText: E: @step.ExecutionCount | S: @step.SuccessCount | A: @step.AvgExecutionDuration.ToString("0.00") ms. @Environment.NewLine
-}
-
+
+
+
+ | Step |
+ Execution |
+ Success |
+ Fail |
+ Min |
+ Max |
+ Avg |
+
+
+
+ @foreach (var step in scenario.Steps)
+ {
+
+ | @step.DisplayText |
+ @step.ExecutionCount |
+ @step.SuccessCount |
+
+ @if (step.FailCount > 0)
+ {
+ @step.FailCount
+ }
+ else
+ {
+ @step.FailCount
+ }
+ |
+ @step.MinExecutionDuration.ToString("0.0") ms |
+ @step.MaxExecutionDuration.ToString("0.0") ms |
+ @step.AvgExecutionDuration.ToString("0.0") ms |
+
+ }
+
+
+