page.on('response', async response => {
if (response.url().endsWith("verifica_autenticidade?ck=0")){
console.log('body===> '+ await response.body());
}
});
It prints [object Promise].
How to get the response body? I need to get the body of the requested page.