How to get part of xml from project properties
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2016
09:14 AM
09-15-2016
09:14 AM
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
Solved! Go to Solution.
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2016
09:29 AM
09-15-2016
09:29 AM
With the information above, it is difficult to understand the problem itself. Would please make it little more clear so that other can reproduce the problem first?
Regards,
Rao.
Regards,
Rao.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2016
08:45 AM
09-19-2016
08:45 AM
def result= context.expand('${#Project#Test#//test2}').toString()
