def page = new XmlSlurper(new SAXParser()).parse(url)
println page.body[0]
I want output
<body>
<h1>Header</h1>
</body>
where my html is:
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>Header</h1>
</body>
</html>
But my output is
Header
How to tell xmlSluper to take the code, not the content?