Happy
9 years agoContributor
How to get part of xml from project properties
I need to get part of xml, that located under project properties.
XML located under Custom Properties, named Test
<test1>aaa</test1>
<test2>bbb</test2>
<test3>ccc</test3>
And from this xml I need to take only value bbb
def result= context.expand('${#Project#Test#//test2}').toString()