Skip to content

Commit

Permalink
#593: add URL to summary result
Browse files Browse the repository at this point in the history
  • Loading branch information
bhecquet committed Dec 3, 2024
1 parent a8a2425 commit 6ee39c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ public void recordTestSession(ITestContext testContext) {
}

Integer sessionId = serverConnector.createSession(testContext.getName(), browserOrApp, SeleniumTestsContextManager.getThreadContext().getStartedBy());
logger.info(String.format("Session result will be visible at: %s/snapshot/testResults/summary/%d/", serverConnector.getUrl(), sessionId));

TestNGContextUtils.setTestSessionCreated(testContext, sessionId);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@
#if ($failedSteps == 0)
<td name="stepsTotal-$testIdx">$totalTestSteps</td>
#else
<td name="stepsTotal-$testIdx">$totalTestSteps<sup>
<a href="#" data-toggle="tooltip" class="failedStepsTooltip" title="$failedSteps step(s) failed">*</a>
</sup>
<td name="stepsTotal-$testIdx">$totalTestSteps<sup>
<a href="#" data-toggle="tooltip" class="failedStepsTooltip" title="$failedSteps step(s) failed">*</a>
</sup>
</td>
#end
<td>$stepsDuration sec.</td>
Expand Down

0 comments on commit 6ee39c6

Please sign in to comment.