2017-08-15 01:08:06 +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.
|
|
|
|
*/
|
|
|
|
const Launcher = require('./Launcher');
|
2018-02-07 17:31:53 +00:00
|
|
|
const BrowserFetcher = require('./BrowserFetcher');
|
2019-04-19 22:33:06 +00:00
|
|
|
const Errors = require('./Errors');
|
|
|
|
const DeviceDescriptors = require('./DeviceDescriptors');
|
2017-08-15 01:08:06 +00:00
|
|
|
|
2018-04-04 21:06:21 +00:00
|
|
|
module.exports = class {
|
2018-09-06 19:33:41 +00:00
|
|
|
/**
|
|
|
|
* @param {string} projectRoot
|
|
|
|
* @param {string} preferredRevision
|
|
|
|
* @param {boolean} isPuppeteerCore
|
|
|
|
*/
|
|
|
|
constructor(projectRoot, preferredRevision, isPuppeteerCore) {
|
|
|
|
this._projectRoot = projectRoot;
|
2019-11-26 09:23:19 +00:00
|
|
|
this._preferredRevision = preferredRevision;
|
|
|
|
this._isPuppeteerCore = isPuppeteerCore;
|
2018-09-06 19:33:41 +00:00
|
|
|
}
|
|
|
|
|
2017-08-15 01:08:06 +00:00
|
|
|
/**
|
2019-11-26 09:23:19 +00:00
|
|
|
* @param {!(Launcher.LaunchOptions & Launcher.ChromeArgOptions & Launcher.BrowserOptions & {product?: string, extraPrefsFirefox?: !object})=} options
|
2017-10-10 05:31:40 +00:00
|
|
|
* @return {!Promise<!Puppeteer.Browser>}
|
2017-08-15 01:08:06 +00:00
|
|
|
*/
|
2020-03-10 20:59:03 +00:00
|
|
|
launch(options = {}) {
|
|
|
|
this._productName = options.product;
|
2018-09-06 19:33:41 +00:00
|
|
|
return this._launcher.launch(options);
|
2017-08-15 01:08:06 +00:00
|
|
|
}
|
2017-08-15 21:29:42 +00:00
|
|
|
|
|
|
|
/**
|
2019-01-14 22:30:03 +00:00
|
|
|
* @param {!(Launcher.BrowserOptions & {browserWSEndpoint?: string, browserURL?: string, transport?: !Puppeteer.ConnectionTransport})} options
|
2017-10-10 05:31:40 +00:00
|
|
|
* @return {!Promise<!Puppeteer.Browser>}
|
2017-08-15 21:29:42 +00:00
|
|
|
*/
|
2018-09-06 19:33:41 +00:00
|
|
|
connect(options) {
|
|
|
|
return this._launcher.connect(options);
|
2017-08-15 21:29:42 +00:00
|
|
|
}
|
2017-09-14 00:39:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {string}
|
|
|
|
*/
|
2018-09-06 19:33:41 +00:00
|
|
|
executablePath() {
|
|
|
|
return this._launcher.executablePath();
|
2017-09-14 00:39:18 +00:00
|
|
|
}
|
2017-12-20 01:51:21 +00:00
|
|
|
|
2019-11-26 09:23:19 +00:00
|
|
|
/**
|
|
|
|
* @return {!Puppeteer.ProductLauncher}
|
|
|
|
*/
|
|
|
|
get _launcher() {
|
2020-03-10 20:59:03 +00:00
|
|
|
if (!this._lazyLauncher || this._lazyLauncher.product !== this._productName) {
|
|
|
|
// @ts-ignore
|
|
|
|
const packageJson = require('../package.json');
|
|
|
|
switch (this._productName) {
|
|
|
|
case 'firefox':
|
|
|
|
this._preferredRevision = packageJson.puppeteer.firefox_revision;
|
|
|
|
break;
|
|
|
|
case 'chrome':
|
|
|
|
default:
|
|
|
|
this._preferredRevision = packageJson.puppeteer.chromium_revision;
|
|
|
|
}
|
2019-11-26 09:23:19 +00:00
|
|
|
this._lazyLauncher = Launcher(this._projectRoot, this._preferredRevision, this._isPuppeteerCore, this._productName);
|
2020-03-10 20:59:03 +00:00
|
|
|
}
|
2019-11-26 09:23:19 +00:00
|
|
|
return this._lazyLauncher;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
get product() {
|
|
|
|
return this._launcher.product;
|
|
|
|
}
|
|
|
|
|
2019-04-19 22:33:06 +00:00
|
|
|
/**
|
|
|
|
* @return {Object}
|
|
|
|
*/
|
|
|
|
get devices() {
|
|
|
|
return DeviceDescriptors;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return {Object}
|
|
|
|
*/
|
|
|
|
get errors() {
|
|
|
|
return Errors;
|
|
|
|
}
|
|
|
|
|
2017-12-20 01:51:21 +00:00
|
|
|
/**
|
2018-11-12 20:59:21 +00:00
|
|
|
* @param {!Launcher.ChromeArgOptions=} options
|
2017-12-20 01:51:21 +00:00
|
|
|
* @return {!Array<string>}
|
|
|
|
*/
|
2018-09-06 19:33:41 +00:00
|
|
|
defaultArgs(options) {
|
|
|
|
return this._launcher.defaultArgs(options);
|
2017-12-20 01:51:21 +00:00
|
|
|
}
|
2018-02-07 17:31:53 +00:00
|
|
|
|
|
|
|
/**
|
2018-11-12 20:59:21 +00:00
|
|
|
* @param {!BrowserFetcher.Options=} options
|
2018-02-07 17:31:53 +00:00
|
|
|
* @return {!BrowserFetcher}
|
|
|
|
*/
|
2018-09-06 19:33:41 +00:00
|
|
|
createBrowserFetcher(options) {
|
|
|
|
return new BrowserFetcher(this._projectRoot, options);
|
2018-02-07 17:31:53 +00:00
|
|
|
}
|
2018-04-04 21:06:21 +00:00
|
|
|
};
|
2017-08-15 01:08:06 +00:00
|
|
|
|