XmlDiffLib icon indicating copy to clipboard operation
XmlDiffLib copied to clipboard

Not working with parameters

Open chashitsu opened this issue 8 years ago • 0 comments

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]"

chashitsu avatar Mar 30 '17 07:03 chashitsu