[Справка] преобразование кода из puppeteer в pippeteer
Ниже приведен код кукольника. Я хочу переключиться на pippeteer. Есть ли какой-нибудь способ? Спасибо!
counter = 0; page.on('response', async (response) => { const matches = /.*\.(jpg|png|svg|gif|webp)$/.exec(response.url()); if (matches && (matches.length === 2)) { const extension = matches[1]; const buffer = await response.buffer(); fs.writeFileSync(`a-${counter}.${extension}`, buffer, 'base64'); counter += 1; } });
Что я уже пробовал:
I have almost all converted, but when it comes to this I cannot convert anymore