2020-06-12 12:53:02 +00:00
|
|
|
/**
|
2020-06-19 13:14:54 +00:00
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
2020-06-12 12:53:02 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-10-05 12:17:03 +00:00
|
|
|
export {Protocol} from 'devtools-protocol';
|
2022-10-10 13:30:12 +00:00
|
|
|
export * from './common/Device.js';
|
2022-06-27 07:24:23 +00:00
|
|
|
export * from './common/Errors.js';
|
2022-10-06 15:30:00 +00:00
|
|
|
export * from './common/PredefinedNetworkConditions.js';
|
2022-10-10 14:01:09 +00:00
|
|
|
export * from './common/Puppeteer.js';
|
2022-10-10 15:51:18 +00:00
|
|
|
export * from './node/BrowserFetcher.js';
|
2022-10-10 14:01:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated Use the query handler API defined on {@link Puppeteer}
|
|
|
|
*/
|
2022-10-05 12:17:03 +00:00
|
|
|
export * from './common/QueryHandler.js';
|
2022-06-27 07:24:23 +00:00
|
|
|
|
2022-10-05 12:17:03 +00:00
|
|
|
import {rootDirname} from './constants.js';
|
|
|
|
import {PuppeteerNode} from './node/PuppeteerNode.js';
|
|
|
|
import {getPackageDirectory} from './node/util.js';
|
2022-07-07 13:04:28 +00:00
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2022-10-05 12:17:03 +00:00
|
|
|
const puppeteer = new PuppeteerNode({
|
|
|
|
projectRoot: getPackageDirectory(rootDirname),
|
|
|
|
isPuppeteerCore: true,
|
|
|
|
});
|
2022-06-09 17:00:50 +00:00
|
|
|
|
|
|
|
export const {
|
|
|
|
connect,
|
2022-10-10 15:51:18 +00:00
|
|
|
/** @deprecated Import {@link BrowserFetcher} directly and use the constructor. */
|
2022-06-09 17:00:50 +00:00
|
|
|
createBrowserFetcher,
|
|
|
|
defaultArgs,
|
|
|
|
executablePath,
|
|
|
|
launch,
|
|
|
|
} = puppeteer;
|
2022-06-09 11:03:44 +00:00
|
|
|
|
|
|
|
export default puppeteer;
|