TypeError: xpath.fromPageSource(...).findElements(...).getAttribute is not a function
const node = xpath
.fromPageSource(response.data)
.findElements('//a[@class="wi_date"]')
for (const url of node) {
console.log(url.getAttribute('href'))
}