2017-08-07 21:55:45 +00:00
|
|
|
/**
|
2024-01-03 10:11:33 +00:00
|
|
|
* @license
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2017-08-07 21:55:45 +00:00
|
|
|
*/
|
|
|
|
|
2017-08-25 00:33:41 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-08-15 01:08:06 +00:00
|
|
|
const puppeteer = require('puppeteer');
|
2017-08-07 21:55:45 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
(async () => {
|
2018-01-11 21:42:01 +00:00
|
|
|
const browser = await puppeteer.launch();
|
|
|
|
const page = await browser.newPage();
|
2020-05-07 10:54:55 +00:00
|
|
|
await page.goto('https://news.ycombinator.com', {
|
|
|
|
waitUntil: 'networkidle2',
|
|
|
|
});
|
2018-01-11 21:42:01 +00:00
|
|
|
// page.pdf() is currently supported only in headless mode.
|
|
|
|
// @see https://bugs.chromium.org/p/chromium/issues/detail?id=753118
|
|
|
|
await page.pdf({
|
|
|
|
path: 'hn.pdf',
|
2020-05-07 10:54:55 +00:00
|
|
|
format: 'letter',
|
2018-01-11 21:42:01 +00:00
|
|
|
});
|
2017-08-11 01:31:54 +00:00
|
|
|
|
2018-01-11 21:42:01 +00:00
|
|
|
await browser.close();
|
2017-08-07 21:55:45 +00:00
|
|
|
})();
|