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;
|
|
|
|
this._launcher = new Launcher(projectRoot, preferredRevision, isPuppeteerCore);
|
|
|
|
}
|
|
|
|
|
2017-08-15 01:08:06 +00:00
|
|
|
/**
|
2018-11-12 20:59:21 +00:00
|
|
|
* @param {!(Launcher.LaunchOptions & Launcher.ChromeArgOptions & Launcher.BrowserOptions)=} 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
|
|
|
|
|
|
|
/**
|
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-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
|
|
|
|