hi,
To make step execution more clear, we would like startTime field of steps in the test report using the real start time value instead of the startOffset so that we can quickly find error info in the SUT logs.(of course users can add this value with the start time mannually). After investigation, i tried the following way to do this:
using one xsl:variable (global) to record the startTime value in TestReportDocument node like
<xsl:variable name="start">
<xsl:value-of select="/report/TestReportDocument/startTime">
</xsl:variable>
then use this in the template (of course render-step template
<xsl:template match="ExecutedStep">
<xsl:call-template name="steps">
...
xsl:with-param name="startTime" select="$start"/>
</xsl:call-template>
......
</xsl:template>
however, I can't get the value of startTime using statement like above. is it the right XPath for startTime?? Thanks advance for your help.