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 . But, it gives extra []. Output = [[4.321808818872719,-22.80283626539684,6.0452621008568075,-15.671138277860097]]
Is there's a way to remove extra []?
My expected value is something like this. This uses "ResponseAsXML"
[4.321808818872719,-22.80283626539684,6.0452621008568075,-15.671138277860097]
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 []