hincal
6 years agoOccasional Visitor
Xpath Match by ChildNode
Hi, I'm trying to dev a test to assert if API response returns the same child nodes that I'm looking for. Since the info that I'm looking for doesn't return as value but child nodes, I need to match them with element names.
<Root> <Child1Parameters>...</Child1Parameters> <Child2Parameters>...</Child2Parameters> <Child3Parameters>...</Child3Parameters> <Child4Parameters>...</Child4Parameters> </Root>
So as in the example, I want to check if Root element has "Child1Parameters", "Child2Parameters", "Child3Parameters" and "Child4Parameters" nodes.
Do you know how can I do this?