XML Append After

Description

Will add the content as the sibling of the node in xPath

Example

Base File


<root>
    <node>value</node>
</root>

Substitution


<Change type="AppendAfter" xPath="/root/node">
    <Content>
        <![CDATA[<node2>value2</node2>]]>
    </Content>
</Change>

Output


<root>
    <node>value</node>
    <node2>value2</node2>
</root>