I have found a node, now i need to select sibling text after it:
In my
Try this:
//foo/following-sibling::text()[1]
(replace //foo/ with your current XPath expression.
//foo/
With this XML:
<data> <foo>foo</foo> bar <baz>baz</baz> </data>
it gives bar as output.
bar