async getResponse(url, method, responseBody) {
const page = this.helpers['Puppeteer'].page;
page.on('response', async (response) => {
if ((await response.url()).endsWith(url)&&response. _request._method === method) {
responseBody.push(await response.json());
}
});
}
просто нужно объявить переменную перед getResonse и использовать ее
let response = [] getResponse (url, method, response)