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.
|
|
|
|
*/
|
2017-09-11 23:21:51 +00:00
|
|
|
const {helper} = require('./helper');
|
2017-08-15 01:08:06 +00:00
|
|
|
const Launcher = require('./Launcher');
|
2018-02-07 17:31:53 +00:00
|
|
|
const BrowserFetcher = require('./BrowserFetcher');
|
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;
|
|
|
|
this._launcher = new Launcher(projectRoot, preferredRevision, isPuppeteerCore);
|
|
|
|
}
|
|
|
|
|
2017-08-15 01:08:06 +00:00
|
|
|
/**
|
|
|
|
* @param {!Object=} options
|
2017-10-10 05:31:40 +00:00
|
|
|
* @return {!Promise<!Puppeteer.Browser>}
|
2017-08-15 01:08:06 +00:00
|
|
|
*/
|
2018-09-06 19:33:41 +00:00
|
|
|
launch(options) {
|
|
|
|
return this._launcher.launch(options);
|
2017-08-15 01:08:06 +00:00
|
|
|
}
|
2017-08-15 21:29:42 +00:00
|
|
|
|
|
|
|
/**
|
2018-09-20 18:55:23 +00:00
|
|
|
* @param {{browserWSEndpoint: string, ignoreHTTPSErrors: boolean, 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
|
|
|
|
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {!Object=} options
|
|
|
|
* @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
|
|
|
|
2018-04-04 21:06:21 +00:00
|
|
|
helper.tracePublicAPI(module.exports, 'Puppeteer');
|