I am trying to compare XML reponse of 2 REST API's. I wanted to compare few fields from Response1 to Response2.
Response1:
<d:site_name>Bondi Junction</d:site_name>
<d:country>AU</d:country>
<d:regio>NSW</d:regio>
<d:contact>123456789</d:contact>
Response2:
<d:country>AU</d:country>
<d:region>NSW</d:region>
I have created a Collection which will have both API's and I wanna run both API's and compare the available columns ( I don't want to compare completely).
Could you please guide me an approach to done.
Thanks, Sekar