Puppeteer [https://github.com/GoogleChrome/puppeteer] 是 Google
開源的網路爬蟲工具,說明文黨一開始就提到
> Puppeteer is a Node library which provides a high-level API to control Chrome or
Chromium over the DevTools Protocol.
主要是以 Chrome 當作核心個人使用起來感覺,就是使用程式去操作瀏覽器而已。
範例
const puppeteer = require("puppeteer")
exports.getPageTitle = async url => {
const browser = await puppeteer.