I have a reoccurring XML element
<comment>
<cmnt_reas_typ>reason1</cmnt_reas_typ>
<cmnt_txt>ABC</cmnt_txt>
</comment>
<comment>
<cmnt_reas_typ>reason1</cmnt_reas_typ>
<cmnt_txt>ABC</cmnt_txt>
</comment>
<comment>
<cmnt_reas_typ>reason2</cmnt_reas_typ>
<cmnt_txt>ABC</cmnt_txt>
</comment>
Basically, I want to display the cmnt_txt only once for a specific cmnt_reas_typ. So from example above I want to display cmnt_txt "ABC" only once for cmnt_reas_typ = "reason1". But the problem is cmnt_reas_typ is a dynamic value and I can not hardcode it in the XPath. Is there some way of saying that just return only one cmnt_txt for this cmnt_reas_typ? Or even if an XPath returns a boolean value true if it is the second occurrence for that cmnt_reas_typ that should be fine as well. It is for XPATH 1.0.
cmnt_reas_typorcmnt_txt? Which of those elements do you want to select? Or do you want an XPATH that will return a boolean for use in a test? – nine9ths Nov 14 '12 at 16:53