2022-09-19 10:49:13 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2022 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.
|
|
|
|
*/
|
|
|
|
|
2022-10-21 13:09:21 +00:00
|
|
|
import {Product} from './Product.js';
|
2022-05-09 11:17:24 +00:00
|
|
|
|
2022-06-27 07:24:23 +00:00
|
|
|
/**
|
2022-10-24 07:07:05 +00:00
|
|
|
* Defines experiment options for Puppeteer.
|
|
|
|
*
|
|
|
|
* See individual properties for more information.
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export interface ExperimentsConfiguration {
|
|
|
|
/**
|
|
|
|
* Require Puppeteer to download Chromium for Apple M1.
|
|
|
|
*
|
|
|
|
* On Apple M1 devices Puppeteer by default downloads the version for
|
|
|
|
* Intel's processor which runs via Rosetta. It works without any problems,
|
|
|
|
* however, with this option, you should get more efficient resource usage
|
|
|
|
* (CPU and RAM) that could lead to a faster execution time.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_EXPERIMENTAL_CHROMIUM_MAC_ARM`.
|
|
|
|
*
|
|
|
|
* @defaultValue `false`
|
|
|
|
*/
|
|
|
|
macArmChromiumEnabled?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines options to configure Puppeteer's behavior during installation and
|
|
|
|
* runtime.
|
|
|
|
*
|
|
|
|
* See individual properties for more information.
|
|
|
|
*
|
2022-10-21 13:09:21 +00:00
|
|
|
* @public
|
2022-06-27 07:24:23 +00:00
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
export interface Configuration {
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Specifies a certain version of the browser you'd like Puppeteer to use.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_BROWSER_REVISION`.
|
|
|
|
*
|
|
|
|
* See {@link PuppeteerNode.launch | puppeteer.launch} on how executable path
|
|
|
|
* is inferred.
|
|
|
|
*
|
|
|
|
* @defaultValue A compatible-revision of the browser.
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
browserRevision?: string;
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Defines the directory to be used by Puppeteer for caching.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_CACHE_DIR`.
|
|
|
|
*
|
|
|
|
* @defaultValue `path.join(os.homedir(), '.cache', 'puppeteer')`
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
cacheDirectory?: string;
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Specifies the URL prefix that is used to download Chromium.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_DOWNLOAD_HOST`.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
* This must include the protocol and may even need a path prefix.
|
|
|
|
*
|
|
|
|
* @defaultValue Either https://storage.googleapis.com or
|
|
|
|
* https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central,
|
|
|
|
* depending on the product.
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
downloadHost?: string;
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Specifies the path for the downloads folder.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_DOWNLOAD_PATH`.
|
|
|
|
*
|
|
|
|
* @defaultValue `<cache>/<product>` where `<cache>` is Puppeteer's cache
|
|
|
|
* directory and `<product>` is the name of the browser.
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
downloadPath?: string;
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Specifies an executable path to be used in
|
|
|
|
* {@link PuppeteerNode.launch | puppeteer.launch}.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_EXECUTABLE_PATH`.
|
|
|
|
*
|
|
|
|
* @defaultValue Auto-computed.
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
executablePath?: string;
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Specifies which browser you'd like Puppeteer to use.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_PRODUCT`.
|
|
|
|
*
|
|
|
|
* @defaultValue `'chrome'`
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
defaultProduct?: Product;
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Defines the directory to be used by Puppeteer for creating temporary files.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_TMP_DIR`.
|
|
|
|
*
|
|
|
|
* @defaultValue `os.tmpdir()`
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
temporaryDirectory?: string;
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Tells Puppeteer to not download during installation.
|
|
|
|
*
|
|
|
|
* Can be overridden by `PUPPETEER_SKIP_DOWNLOAD`.
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
skipDownload?: boolean;
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Tells Puppeteer to log at the given level.
|
|
|
|
*
|
|
|
|
* At the moment, any option silences logging.
|
|
|
|
*
|
|
|
|
* @defaultValue `undefined`
|
|
|
|
*/
|
2022-10-21 13:09:21 +00:00
|
|
|
logLevel?: 'silent' | 'error' | 'warn';
|
2022-10-24 07:07:05 +00:00
|
|
|
/**
|
|
|
|
* Defines experimental options for Puppeteer.
|
|
|
|
*/
|
|
|
|
experiments?: ExperimentsConfiguration;
|
2022-10-21 13:09:21 +00:00
|
|
|
}
|