FirefoxSettings interface
Signature
export interface FirefoxSettings
Properties
Property
|
Modifiers
|
Type
|
Description
|
Default
|
downloadBaseUrl
|
`optional`
|
string
|
Specifies the URL prefix that is used to download the browser.
Can be overridden by `PUPPETEER_FIREFOX_DOWNLOAD_BASE_URL`.
**Remarks:**
This must include the protocol and may even need a path prefix. This must **not** include a trailing slash similar to the default.
|
https://archive.mozilla.org/pub/firefox/releases
|
skipDownload
|
`optional`
|
boolean
|
Tells Puppeteer to not download the browser during installation.
Can be overridden by `PUPPETEER_FIREFOX_SKIP_DOWNLOAD`.
|
true
|
version
|
`optional`
|
string
|
Specifies a certain version of the browser you'd like Puppeteer to use.
Can be overridden by `PUPPETEER_FIREFOX_VERSION`.
See [puppeteer.launch](./puppeteer.puppeteernode.launch.md) on how executable path is inferred.
|
The pinned browser version supported by the current Puppeteer version.
|