Write a Groovy script to extract a value from an XML response.

In SOAP UI, Groovy scripts enhance testing by manipulating and extracting data from XML responses. Groovy, a scripting language for the Java platform, simplifies parsing and handling XML data.

Example :
def response = '''<Response>
                    <Status>Success</Status>
                    <Value>12345</Value>
                  </Response>'''
def xml = new XmlSlurper().parseText(response)
def extractedValue = xml.Value.text()
log.info("Extracted Value: " + extractedValue)?


This script uses XmlSlurper to parse the XML response and extract the <Value> element, logging the result for verification.