Campoie / rest-assured

Automatically exported from code.google.com/p/rest-assured
0 stars 0 forks source link

Support for XmlPath syntax in Node #57

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
When having got a Node from XmlPath it should be possible to use XmlPath syntax 
from the Node.

E.g.

String href = node.get("link.@href");

One way to implement this would be to store the XmlPath (e.g. "x.y") in the 
Node object. When doing "node.get("link.@href")" we could just append the 
"link.@href" to the "x.y" (i.e. x.y.link.@href) and return the result.

Original issue reported on code.google.com by johan.ha...@gmail.com on 30 Mar 2011 at 10:11

GoogleCodeExporter commented 9 years ago
This should also apply to NodeChildren

Original comment by johan.ha...@gmail.com on 30 Mar 2011 at 10:33

GoogleCodeExporter commented 9 years ago

Original comment by johan.ha...@gmail.com on 14 Nov 2013 at 7:01