Changes for page SetXmlVar
Last modified by Outhman Moustaghfir on 2024/06/20 12:14
edited by Outhman Moustaghfir
on 2024/06/20 12:09
on 2024/06/20 12:09
edited by Outhman Moustaghfir
on 2024/06/20 12:11
on 2024/06/20 12:11
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,4 +1,4 @@ 1 -=== 1 +=== Overview === 2 2 3 3 The SetXmlVar function is used to define and set xml as variables within a scenario. Variables can be classified as either global or local, each serving distinct purposes within the execution of scenarios. 4 4 ... ... @@ -28,7 +28,7 @@ 28 28 xmlns:xs="http://www.w3.org/2001/XMLSchema" 29 29 xmlns:ix="localFunction" 30 30 xmlns:fn="http://www.w3.org/2005/xpath-functions" version="2.0"> 31 - <xsl:output method="xml" indent="yes"/> 31 + <xsl:output method="xml" indent="yes"></xsl:output> 32 32 <!-- Beginning of the Translation --> 33 33 <xsl:template match="/"> 34 34 <xsl:variable name="varrr"> ... ... @@ -42,7 +42,7 @@ 42 42 </Tracking> 43 43 </xsl:variable> 44 44 <ixDOC> 45 - <xsl:value-of select="ixf:SetXmlVar('xmlVar',$varrr)"/> 45 + <xsl:value-of select="ixf:SetXmlVar('xmlVar',$varrr)"></xsl:value-of> 46 46 </ixDOC> 47 47 </xsl:template> 48 48 </xsl:stylesheet> ... ... @@ -57,7 +57,7 @@ 57 57 <xsl:value-of select="ixf:GetXmlVar('variable_name')"></xsl:value-of> 58 58 {{/code}} 59 59 60 -**variable_name**: The name of the variable whose value you want to retrieve. 60 +**variable_name**: The name of the variable whose value you want to retrieve as a xml. 61 61 62 62 === Note === 63 63