I have a link, clicking on which will open a new browser with only XML content in it. I need to verify certain tags in this XML.
Please let me know how do I do it.
Tried getBodyText, getHtmlSource and getText - Nothing helps...!
Thanks, Mike
I have a link, clicking on which will open a new browser with only XML content in it. I need to verify certain tags in this XML.
Please let me know how do I do it.
Tried getBodyText, getHtmlSource and getText - Nothing helps...!
Thanks, Mike
First download the xml and use a xml parser to parse the xml as per your need.
I am using jdom(http://www.jdom.org/) for parsing my xml files.
To understand how IE renders the XML, please go through: -
http://msdn.microsoft.com/en-us/library/windows/desktop/ms757841(v=vs.85).aspx
Let me know if you need any further help on this.