Can cheerio get an image from a figure tag in an xml file using Javascript?
I am trying to extract the img src from the following xml tag inside of an item I am calling cheerio.load on my response data like so const $ = cheerio.load(response.data, { xmlMode: true }); $("item").each((i, item) => { and…