puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
20 lines • 395 B
JavaScript
/**
* @license
* Copyright 2017 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
export * from './index-browser.js';
import { Puppeteer } from './common/Puppeteer.js';
/**
* @public
*/
const puppeteer = new Puppeteer({
isPuppeteerCore: true,
});
export const {
/**
* @public
*/
connect, } = puppeteer;
export default puppeteer;
//# sourceMappingURL=puppeteer-core-browser.js.map