Bishal
8 years agoContributor
How to Remove extra [] from the Xpath Expression Response.
Hi, I am using XPath Assertion to compare expected value vs actual Actual XPath Assertion //Response[1]/e/columns --- This provides concat values for all the nodes = column under Response/e ....
- 8 years ago
This issue is fixed.
//Response[1]/e/columns -------- this was giving me an issue with extra []
So , i changed it to
string-join(//Response[1]/e/columns/text(),',') --- This helped me to remove an extra []