2017-05-11 07:06:41 +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.
|
|
|
|
*/
|
|
|
|
|
2018-02-26 20:10:06 +00:00
|
|
|
const { helper } = require('./helper');
|
|
|
|
const Target = require('./Target');
|
2017-09-14 04:27:14 +00:00
|
|
|
const EventEmitter = require('events');
|
2018-02-26 20:10:06 +00:00
|
|
|
const TaskQueue = require('./TaskQueue');
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-09-14 04:27:14 +00:00
|
|
|
class Browser extends EventEmitter {
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-10-10 05:31:40 +00:00
|
|
|
* @param {!Puppeteer.Connection} connection
|
2017-09-29 22:16:32 +00:00
|
|
|
* @param {!Object=} options
|
2017-12-11 20:11:12 +00:00
|
|
|
* @param {?Puppeteer.ChildProcess} process
|
2017-10-10 05:31:40 +00:00
|
|
|
* @param {(function():Promise)=} closeCallback
|
2017-06-21 20:58:49 +00:00
|
|
|
*/
|
2017-12-11 20:11:12 +00:00
|
|
|
constructor(connection, options = {}, process, closeCallback) {
|
2017-09-14 04:27:14 +00:00
|
|
|
super();
|
2017-09-29 22:16:32 +00:00
|
|
|
this._ignoreHTTPSErrors = !!options.ignoreHTTPSErrors;
|
|
|
|
this._appMode = !!options.appMode;
|
2017-12-11 20:11:12 +00:00
|
|
|
this._process = process;
|
2017-07-19 05:10:38 +00:00
|
|
|
this._screenshotTaskQueue = new TaskQueue();
|
2017-08-15 01:08:06 +00:00
|
|
|
this._connection = connection;
|
|
|
|
this._closeCallback = closeCallback || new Function();
|
2017-10-18 02:14:57 +00:00
|
|
|
/** @type {Map<string, Target>} */
|
|
|
|
this._targets = new Map();
|
2017-11-04 01:46:17 +00:00
|
|
|
this._connection.setClosedCallback(() => {
|
|
|
|
this.emit(Browser.Events.Disconnected);
|
|
|
|
});
|
2017-10-18 02:14:57 +00:00
|
|
|
this._connection.on('Target.targetCreated', this._targetCreated.bind(this));
|
|
|
|
this._connection.on('Target.targetDestroyed', this._targetDestroyed.bind(this));
|
|
|
|
this._connection.on('Target.targetInfoChanged', this._targetInfoChanged.bind(this));
|
|
|
|
}
|
|
|
|
|
2017-12-11 20:11:12 +00:00
|
|
|
/**
|
|
|
|
* @return {?Puppeteer.ChildProcess}
|
|
|
|
*/
|
|
|
|
process() {
|
|
|
|
return this._process;
|
|
|
|
}
|
|
|
|
|
2017-10-18 02:14:57 +00:00
|
|
|
/**
|
|
|
|
* @param {!Puppeteer.Connection} connection
|
2017-11-17 00:28:52 +00:00
|
|
|
* @param {!Object=} options
|
2017-12-11 20:11:12 +00:00
|
|
|
* @param {?Puppeteer.ChildProcess} process
|
2017-10-18 02:14:57 +00:00
|
|
|
* @param {function()=} closeCallback
|
|
|
|
*/
|
2017-12-11 20:11:12 +00:00
|
|
|
static async create(connection, options, process, closeCallback) {
|
|
|
|
const browser = new Browser(connection, options, process, closeCallback);
|
2017-10-18 02:14:57 +00:00
|
|
|
await connection.send('Target.setDiscoverTargets', {discover: true});
|
|
|
|
return browser;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-26 20:10:06 +00:00
|
|
|
* @param {{targetInfo: !Puppeteer.TargetInfo}} event
|
2017-10-18 02:14:57 +00:00
|
|
|
*/
|
|
|
|
async _targetCreated(event) {
|
2018-02-26 20:10:06 +00:00
|
|
|
const targetInfo = event.targetInfo;
|
|
|
|
const target = new Target(targetInfo, () => this._connection.createSession(targetInfo.targetId), this._ignoreHTTPSErrors, this._appMode, this._screenshotTaskQueue);
|
2017-10-18 02:14:57 +00:00
|
|
|
console.assert(!this._targets.has(event.targetInfo.targetId), 'Target should not exist before targetCreated');
|
|
|
|
this._targets.set(event.targetInfo.targetId, target);
|
|
|
|
|
|
|
|
if (await target._initializedPromise)
|
|
|
|
this.emit(Browser.Events.TargetCreated, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {{targetId: string}} event
|
|
|
|
*/
|
|
|
|
async _targetDestroyed(event) {
|
|
|
|
const target = this._targets.get(event.targetId);
|
|
|
|
target._initializedCallback(false);
|
|
|
|
this._targets.delete(event.targetId);
|
2018-02-22 00:08:29 +00:00
|
|
|
target._closedCallback();
|
2017-10-18 02:14:57 +00:00
|
|
|
if (await target._initializedPromise)
|
|
|
|
this.emit(Browser.Events.TargetDestroyed, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-26 20:10:06 +00:00
|
|
|
* @param {{targetInfo: !Puppeteer.TargetInfo}} event
|
2017-10-18 02:14:57 +00:00
|
|
|
*/
|
|
|
|
_targetInfoChanged(event) {
|
|
|
|
const target = this._targets.get(event.targetInfo.targetId);
|
|
|
|
console.assert(target, 'target should exist before targetInfoChanged');
|
2018-02-26 20:10:06 +00:00
|
|
|
const previousURL = target.url();
|
|
|
|
const wasInitialized = target._isInitialized;
|
2017-10-18 02:14:57 +00:00
|
|
|
target._targetInfoChanged(event.targetInfo);
|
2018-02-26 20:10:06 +00:00
|
|
|
if (wasInitialized && previousURL !== target.url())
|
|
|
|
this.emit(Browser.Events.TargetChanged, target);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-08-15 21:29:42 +00:00
|
|
|
/**
|
|
|
|
* @return {string}
|
|
|
|
*/
|
2017-08-16 08:10:55 +00:00
|
|
|
wsEndpoint() {
|
2017-08-15 21:29:42 +00:00
|
|
|
return this._connection.url();
|
|
|
|
}
|
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2018-02-26 20:10:06 +00:00
|
|
|
* @return {!Promise<!Puppeteer.Page>}
|
2017-07-25 07:44:13 +00:00
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
async newPage() {
|
2017-08-09 23:14:00 +00:00
|
|
|
const {targetId} = await this._connection.send('Target.createTarget', {url: 'about:blank'});
|
2017-10-18 02:14:57 +00:00
|
|
|
const target = await this._targets.get(targetId);
|
|
|
|
console.assert(await target._initializedPromise, 'Failed to create target for page');
|
|
|
|
const page = await target.page();
|
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {!Array<!Target>}
|
|
|
|
*/
|
|
|
|
targets() {
|
|
|
|
return Array.from(this._targets.values()).filter(target => target._isInitialized);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-26 20:10:06 +00:00
|
|
|
* @return {!Promise<!Array<!Puppeteer.Page>>}
|
2017-10-18 02:14:57 +00:00
|
|
|
*/
|
|
|
|
async pages() {
|
|
|
|
const pages = await Promise.all(this.targets().map(target => target.page()));
|
|
|
|
return pages.filter(page => !!page);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
/**
|
2017-07-26 03:39:50 +00:00
|
|
|
* @return {!Promise<string>}
|
2017-07-25 07:44:13 +00:00
|
|
|
*/
|
2017-06-21 20:51:06 +00:00
|
|
|
async version() {
|
2018-01-05 18:14:30 +00:00
|
|
|
const version = await this._getVersion();
|
2017-08-13 05:04:39 +00:00
|
|
|
return version.product;
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2018-01-05 18:14:30 +00:00
|
|
|
/**
|
|
|
|
* @return {!Promise<string>}
|
|
|
|
*/
|
|
|
|
async userAgent() {
|
|
|
|
const version = await this._getVersion();
|
|
|
|
return version.userAgent;
|
|
|
|
}
|
|
|
|
|
2017-09-14 04:27:14 +00:00
|
|
|
async close() {
|
|
|
|
await this._closeCallback.call(null);
|
2017-10-17 22:35:00 +00:00
|
|
|
this.disconnect();
|
|
|
|
}
|
|
|
|
|
|
|
|
disconnect() {
|
|
|
|
this._connection.dispose();
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2018-01-05 18:14:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {!Promise<!Object>}
|
|
|
|
*/
|
|
|
|
_getVersion() {
|
|
|
|
return this._connection.send('Browser.getVersion');
|
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
|
2017-10-18 02:14:57 +00:00
|
|
|
/** @enum {string} */
|
|
|
|
Browser.Events = {
|
|
|
|
TargetCreated: 'targetcreated',
|
|
|
|
TargetDestroyed: 'targetdestroyed',
|
2017-11-04 01:46:17 +00:00
|
|
|
TargetChanged: 'targetchanged',
|
|
|
|
Disconnected: 'disconnected'
|
2017-10-18 02:14:57 +00:00
|
|
|
};
|
|
|
|
|
2017-07-19 03:53:00 +00:00
|
|
|
helper.tracePublicAPI(Browser);
|
2017-05-11 07:06:41 +00:00
|
|
|
|
2018-02-26 20:10:06 +00:00
|
|
|
module.exports = Browser;
|