Here's my XML:
<root>
<A id='1'>
<B>Blah</B>
<C>Test</C>
</A>
</root>
I would like to add under so my final XML would like:
<root>
<A id='1'>
<B>Blah</B>
<C>Test</C>
<D>New value</D>
</A>
</root>
I can get the node in XPath using //Aand I am not sure how to add or edit the values once I get the node.