Unable to use Xml Parser (XmlSlurper) in Katalon 8.1.0

HI Team,
I worked on Kalaton 7 version and i was able to use XmlSlurper() to parse xml but when i moved to Katalon 8 it doesn’t have the parser. are there any new methods that supports similar xml parsing ?

Regards,
Hemanth

Try either of

  • groovy.util.XmlSlurper
  • groovy.xml.XmlSlurper

The Groovy project changed the package name oof XmlSlurper some years ago.

Thank you.