I'm trying to list under a "test" what tests failed and their details. So if i wanted to say select all the tests with id 1 and then display in a table their contents
/TESTS/TEST
I then want to select detail and somethingelse
would their nested applicabilities be:
/TESTS/TEST/detail
/TESTS/TEST/detail
or
./detail
Normally in XSLT I would do:
<xsl:for-each select="//TEST"> <---- Repeat
<xsl:value-of select="./detail"/> <--- Bindings
<xsl:value-of select="./somethingelse"/> <---- Bindings
</xsl:for-each>
I either get the ...