XmlDiffLib
XmlDiffLib copied to clipboard
Not working with parameters
When some parameter in node is changed It assume it like a new node. If I have more parameters in node I can't find out which of them was changed....
Original xml file:
<config> <user id="1"> <appointmentForm showActivityByCategory="True" appBubbleForm="True" /> </user> </config>
Modified xml file:
<config> <user id="1"> <appointmentForm showActivityByCategory="True" appBubbleForm="Flase" /> </user> </config>
Diff returns description="Node not found" XPath="config[1]/user[@id="1"][1]/appointmentForm[@showActivityByCategory="True"][@appBubbleForm="False"][1]"