3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Puppeteerを使ってみる

Posted at

puppeteerとは、Node.js上でChromeを制御するためのライブラリ。スクレイピング等に利用することができる。今回はこれの使い方を簡単に見てみる。

ドキュメント

導入

これで導入するとChromiumの最新バージョンが含まれる。

npm i puppeteer

puppeteer-coreで導入するとChromiumは含まれない。

npm i puppeteer-core

動かしてみよう

以下はほとんどドキュメント内のサンプルのまま。

import puppeteer from 'puppeteer';

(async () => {
  const browser = await puppeteer.launch({ headless: true });
  const page = await browser.newPage();
  await page.goto('https://qiita.com/');

  await page.screenshot({ path: 'screenshot.png'});
  await page.pdf({ path: 'hn.pdf', format: 'a4' });
  await browser.close();

})();

browserオブジェクトを作成、pageオブジェクトを作成、page.gotoで移動し、page.screenshotでスクリーンショットを作成、page.pdfでpdfを作成する。

headlessオプションをfalseにすることでヘッドレスではなく見える状態でブラウザが起動する。

表示されるのを待ってからクリック

waitForNavigation([option])で遷移先が開くのを待つ。

await Promise.all([
  page.waitForNavigation(),
  page.click('a')
]);

特定の要素の出現を待ちたい場合は以下のようにwaitForSelectorを使う。

await Promise.all([
  page.page.waitForSelector(selector),
  page.click('a')
]);
3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?