2020-05-05 08:36:44 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2020-07-13 09:22:26 +00:00
|
|
|
import { puppeteerErrors, PuppeteerErrors } from './Errors.js';
|
|
|
|
import { ConnectionTransport } from './ConnectionTransport.js';
|
|
|
|
import { devicesMap, DevicesMap } from './DeviceDescriptors.js';
|
|
|
|
import { Browser } from './Browser.js';
|
2020-06-04 10:47:13 +00:00
|
|
|
import {
|
|
|
|
registerCustomQueryHandler,
|
|
|
|
unregisterCustomQueryHandler,
|
2020-09-23 14:02:22 +00:00
|
|
|
customQueryHandlerNames,
|
|
|
|
clearCustomQueryHandlers,
|
|
|
|
CustomQueryHandler,
|
2020-07-13 09:22:26 +00:00
|
|
|
} from './QueryHandler.js';
|
2020-10-12 09:08:57 +00:00
|
|
|
import { Product } from './Product.js';
|
2021-02-16 09:39:31 +00:00
|
|
|
import { connectToBrowser, BrowserConnectOptions } from './BrowserConnector.js';
|
2021-01-21 09:00:57 +00:00
|
|
|
import {
|
|
|
|
PredefinedNetworkConditions,
|
|
|
|
networkConditions,
|
|
|
|
} from './NetworkConditions.js';
|
2020-05-05 08:36:44 +00:00
|
|
|
|
2020-06-04 10:47:13 +00:00
|
|
|
/**
|
2022-02-07 13:03:54 +00:00
|
|
|
* Settings that are common to the Puppeteer class, regardless of environment.
|
2020-10-13 15:19:26 +00:00
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
export interface CommonPuppeteerSettings {
|
|
|
|
isPuppeteerCore: boolean;
|
|
|
|
}
|
2021-04-06 08:58:01 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2021-02-16 09:39:31 +00:00
|
|
|
export interface ConnectOptions extends BrowserConnectOptions {
|
2020-10-13 15:19:26 +00:00
|
|
|
browserWSEndpoint?: string;
|
|
|
|
browserURL?: string;
|
|
|
|
transport?: ConnectionTransport;
|
|
|
|
product?: Product;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main Puppeteer class.
|
2020-07-17 12:58:56 +00:00
|
|
|
*
|
2020-10-13 15:19:26 +00:00
|
|
|
* IMPORTANT: if you are using Puppeteer in a Node environment, you will get an
|
|
|
|
* instance of {@link PuppeteerNode} when you import or require `puppeteer`.
|
|
|
|
* That class extends `Puppeteer`, so has all the methods documented below as
|
|
|
|
* well as all that are defined on {@link PuppeteerNode}.
|
2020-06-04 10:47:13 +00:00
|
|
|
* @public
|
|
|
|
*/
|
2020-05-05 08:36:44 +00:00
|
|
|
export class Puppeteer {
|
2020-10-13 15:19:26 +00:00
|
|
|
protected _isPuppeteerCore: boolean;
|
|
|
|
protected _changedProduct = false;
|
2020-05-05 08:36:44 +00:00
|
|
|
|
2020-06-24 14:21:46 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-10-13 15:19:26 +00:00
|
|
|
constructor(settings: CommonPuppeteerSettings) {
|
|
|
|
this._isPuppeteerCore = settings.isPuppeteerCore;
|
2022-06-09 17:00:50 +00:00
|
|
|
|
|
|
|
this.connect = this.connect.bind(this);
|
|
|
|
this.registerCustomQueryHandler =
|
|
|
|
this.registerCustomQueryHandler.bind(this);
|
|
|
|
this.unregisterCustomQueryHandler =
|
|
|
|
this.unregisterCustomQueryHandler.bind(this);
|
|
|
|
this.customQueryHandlerNames = this.customQueryHandlerNames.bind(this);
|
|
|
|
this.clearCustomQueryHandlers = this.clearCustomQueryHandlers.bind(this);
|
2020-05-05 08:36:44 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 14:21:46 +00:00
|
|
|
/**
|
|
|
|
* This method attaches Puppeteer to an existing browser instance.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* @param options - Set of configurable options to set on the browser.
|
|
|
|
* @returns Promise which resolves to browser instance.
|
|
|
|
*/
|
2020-10-13 15:19:26 +00:00
|
|
|
connect(options: ConnectOptions): Promise<Browser> {
|
2020-10-12 09:08:57 +00:00
|
|
|
return connectToBrowser(options);
|
2020-05-05 08:36:44 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 14:21:46 +00:00
|
|
|
/**
|
|
|
|
* @remarks
|
2020-07-08 09:29:58 +00:00
|
|
|
* A list of devices to be used with `page.emulate(options)`. Actual list of devices can be found in {@link https://github.com/puppeteer/puppeteer/blob/main/src/common/DeviceDescriptors.ts | src/common/DeviceDescriptors.ts}.
|
|
|
|
*
|
2020-06-24 14:21:46 +00:00
|
|
|
* @example
|
|
|
|
*
|
|
|
|
* ```js
|
|
|
|
* const puppeteer = require('puppeteer');
|
|
|
|
* const iPhone = puppeteer.devices['iPhone 6'];
|
|
|
|
*
|
|
|
|
* (async () => {
|
|
|
|
* const browser = await puppeteer.launch();
|
|
|
|
* const page = await browser.newPage();
|
|
|
|
* await page.emulate(iPhone);
|
|
|
|
* await page.goto('https://www.google.com');
|
|
|
|
* // other actions...
|
|
|
|
* await browser.close();
|
|
|
|
* })();
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
*/
|
2020-05-05 08:36:44 +00:00
|
|
|
get devices(): DevicesMap {
|
|
|
|
return devicesMap;
|
|
|
|
}
|
|
|
|
|
2020-06-24 14:21:46 +00:00
|
|
|
/**
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* Puppeteer methods might throw errors if they are unable to fulfill a request.
|
|
|
|
* For example, `page.waitForSelector(selector[, options])` might fail if
|
|
|
|
* the selector doesn't match any nodes during the given timeframe.
|
|
|
|
*
|
|
|
|
* For certain types of errors Puppeteer uses specific error classes.
|
2020-07-08 09:29:58 +00:00
|
|
|
* These classes are available via `puppeteer.errors`.
|
|
|
|
*
|
2020-06-24 14:21:46 +00:00
|
|
|
* @example
|
|
|
|
* An example of handling a timeout error:
|
|
|
|
* ```js
|
|
|
|
* try {
|
|
|
|
* await page.waitForSelector('.foo');
|
|
|
|
* } catch (e) {
|
|
|
|
* if (e instanceof puppeteer.errors.TimeoutError) {
|
|
|
|
* // Do something if this is a timeout.
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2020-05-05 08:36:44 +00:00
|
|
|
get errors(): PuppeteerErrors {
|
|
|
|
return puppeteerErrors;
|
|
|
|
}
|
|
|
|
|
2021-01-21 09:00:57 +00:00
|
|
|
/**
|
|
|
|
* @remarks
|
|
|
|
* Returns a list of network conditions to be used with `page.emulateNetworkConditions(networkConditions)`. Actual list of predefined conditions can be found in {@link https://github.com/puppeteer/puppeteer/blob/main/src/common/NetworkConditions.ts | src/common/NetworkConditions.ts}.
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
*
|
|
|
|
* ```js
|
|
|
|
* const puppeteer = require('puppeteer');
|
|
|
|
* const slow3G = puppeteer.networkConditions['Slow 3G'];
|
|
|
|
*
|
|
|
|
* (async () => {
|
|
|
|
* const browser = await puppeteer.launch();
|
|
|
|
* const page = await browser.newPage();
|
|
|
|
* await page.emulateNetworkConditions(slow3G);
|
|
|
|
* await page.goto('https://www.google.com');
|
|
|
|
* // other actions...
|
|
|
|
* await browser.close();
|
|
|
|
* })();
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
get networkConditions(): PredefinedNetworkConditions {
|
|
|
|
return networkConditions;
|
|
|
|
}
|
|
|
|
|
2020-06-24 14:21:46 +00:00
|
|
|
/**
|
2020-10-07 08:43:46 +00:00
|
|
|
* Registers a {@link CustomQueryHandler | custom query handler}. After
|
|
|
|
* registration, the handler can be used everywhere where a selector is
|
|
|
|
* expected by prepending the selection string with `<name>/`. The name is
|
|
|
|
* only allowed to consist of lower- and upper case latin letters.
|
|
|
|
* @example
|
|
|
|
* ```
|
|
|
|
* puppeteer.registerCustomQueryHandler('text', { … });
|
|
|
|
* const aHandle = await page.$('text/…');
|
|
|
|
* ```
|
|
|
|
* @param name - The name that the custom query handler will be registered under.
|
|
|
|
* @param queryHandler - The {@link CustomQueryHandler | custom query handler} to
|
|
|
|
* register.
|
2020-06-24 14:21:46 +00:00
|
|
|
*/
|
2020-10-23 14:28:38 +00:00
|
|
|
registerCustomQueryHandler(
|
2020-05-07 10:54:55 +00:00
|
|
|
name: string,
|
2020-09-23 14:02:22 +00:00
|
|
|
queryHandler: CustomQueryHandler
|
2020-05-07 10:54:55 +00:00
|
|
|
): void {
|
2020-06-04 10:47:13 +00:00
|
|
|
registerCustomQueryHandler(name, queryHandler);
|
2020-05-05 08:36:44 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 14:21:46 +00:00
|
|
|
/**
|
2020-10-07 08:43:46 +00:00
|
|
|
* @param name - The name of the query handler to unregistered.
|
2020-06-24 14:21:46 +00:00
|
|
|
*/
|
2020-10-23 14:28:38 +00:00
|
|
|
unregisterCustomQueryHandler(name: string): void {
|
2020-06-04 10:47:13 +00:00
|
|
|
unregisterCustomQueryHandler(name);
|
2020-05-05 08:36:44 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 14:21:46 +00:00
|
|
|
/**
|
2020-10-07 08:43:46 +00:00
|
|
|
* @returns a list with the names of all registered custom query handlers.
|
2020-06-24 14:21:46 +00:00
|
|
|
*/
|
2020-10-23 14:28:38 +00:00
|
|
|
customQueryHandlerNames(): string[] {
|
2020-09-23 14:02:22 +00:00
|
|
|
return customQueryHandlerNames();
|
2020-05-05 08:36:44 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 14:21:46 +00:00
|
|
|
/**
|
2020-10-07 08:43:46 +00:00
|
|
|
* Clears all registered handlers.
|
2020-06-24 14:21:46 +00:00
|
|
|
*/
|
2020-10-23 14:28:38 +00:00
|
|
|
clearCustomQueryHandlers(): void {
|
2020-09-23 14:02:22 +00:00
|
|
|
clearCustomQueryHandlers();
|
2020-05-05 08:36:44 +00:00
|
|
|
}
|
|
|
|
}
|