Is there any way to select following sibling element in xml using Scala?
So if I have xml like this:
<root> <childA>A</childA> <randomElementName>B</randomElementName> </root>
I would like to do selection like this:
(root \ "childA") followingSibling text
that will give me "B"