summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/packages/puppeteer-core/src/common/Configuration.ts
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/packages/puppeteer-core/src/common/Configuration.ts')
-rw-r--r--remote/test/puppeteer/packages/puppeteer-core/src/common/Configuration.ts18
1 files changed, 8 insertions, 10 deletions
diff --git a/remote/test/puppeteer/packages/puppeteer-core/src/common/Configuration.ts b/remote/test/puppeteer/packages/puppeteer-core/src/common/Configuration.ts
index c64d109a7c..fe71e57587 100644
--- a/remote/test/puppeteer/packages/puppeteer-core/src/common/Configuration.ts
+++ b/remote/test/puppeteer/packages/puppeteer-core/src/common/Configuration.ts
@@ -32,7 +32,13 @@ export interface Configuration {
* See {@link PuppeteerNode.launch | puppeteer.launch} on how executable path
* is inferred.
*
- * @defaultValue A compatible-revision of the browser.
+ * Use a specific browser version (e.g., 119.0.6045.105). If you use an alias
+ * such `stable` or `canary` it will only work during the installation of
+ * Puppeteer and it will fail when launching the browser.
+ *
+ * @example 119.0.6045.105
+ * @defaultValue The pinned browser version supported by the current Puppeteer
+ * version.
*/
browserRevision?: string;
/**
@@ -51,20 +57,12 @@ export interface Configuration {
* @remarks
* This must include the protocol and may even need a path prefix.
*
- * @defaultValue Either https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing or
+ * @defaultValue Either https://storage.googleapis.com/chrome-for-testing-public or
* https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central,
* depending on the product.
*/
downloadBaseUrl?: string;
/**
- * Specifies the path for the downloads folder.
- *
- * Can be overridden by `PUPPETEER_DOWNLOAD_PATH`.
- *
- * @defaultValue `<cacheDirectory>`
- */
- downloadPath?: string;
- /**
* Specifies an executable path to be used in
* {@link PuppeteerNode.launch | puppeteer.launch}.
*