The information I want is shown in a collapsed container, but I'd like it up higher so I don't need to expand the container before taking a screenshot of the header.

Code: Select all
<params>
<param
name="URL">
https://www.google.com
</param>
</params>
Code: Select all
<tr>
<td>
<i class="field">
URL Tested
<b>
<xsl:value-of select=".//param/@name" />
</b>
</i>
</td>
</tr>
Code: Select all
<params>
<param
name="URL">
https://www.google.com
</param>
</params>
Code: Select all
<tr>
<td>
<i class="field">
URL Tested
<b>
<xsl:value-of select=".//param[@name='URL']" />
</b>
</i>
</td>
</tr>