I have an api, which return xml data.
I am writing a testcase in cypress, through which I am requesting that api, which returns following data
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Student>
<Roll>55</Roll>
<Name>ABC</Name>
</Student>
How do I parse this response body and get Name
of the student from this response ?