UNPKG

@cloudflare/puppeteer

Version:

A high-level API to control headless Chrome over the DevTools Protocol

38 lines (32 loc) 473 B
/** * @license * Copyright 2017 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ export * from './index.js'; import {PuppeteerNode} from './node/PuppeteerNode.js'; /** * @public */ const puppeteer = new PuppeteerNode({ isPuppeteerCore: true, }); export const { /** * @public */ connect, /** * @public */ defaultArgs, /** * @public */ executablePath, /** * @public */ launch, } = puppeteer; export default puppeteer;