Skip to main content
Version: 22.7.1

PDF generation

For printing PDFs use Page.pdf().

const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://news.ycombinator.com', {
waitUntil: 'networkidle2',
});
// Saves the PDF to hn.pdf.
await page.pdf({
path: 'hn.pdf',
});

await browser.close();

By default, the Page.pdf() waits for fonts to be loaded.