Specifies a certain version of the browser you'd like Puppeteer to use.
Can be overridden by `PUPPETEER_BROWSER_REVISION`.
See [puppeteer.launch](./puppeteer.puppeteernode.launch.md) on how executable path is inferred.
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.
</td><td>
The pinned browser version supported by the current Puppeteer version.
</td></tr>
<tr><td>
cacheDirectory
</td><td>
`optional`
</td><td>
string
</td><td>
Defines the directory to be used by Puppeteer for caching.
Can be overridden by `PUPPETEER_CACHE_DIR`.
</td><td>
`path.join(os.homedir(), '.cache', 'puppeteer')`
</td></tr>
<tr><td>
defaultProduct
</td><td>
`optional`
</td><td>
[Product](./puppeteer.product.md)
</td><td>
Specifies which browser you'd like Puppeteer to use.
Can be overridden by `PUPPETEER_PRODUCT`.
</td><td>
`chrome`
</td></tr>
<tr><td>
downloadBaseUrl
</td><td>
`optional`
</td><td>
string
</td><td>
Specifies the URL prefix that is used to download the browser.
Can be overridden by `PUPPETEER_DOWNLOAD_BASE_URL`.
</td><td>
Either https://storage.googleapis.com/chrome-for-testing-public or https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central, depending on the product.
</td></tr>
<tr><td>
executablePath
</td><td>
`optional`
</td><td>
string
</td><td>
Specifies an executable path to be used in [puppeteer.launch](./puppeteer.puppeteernode.launch.md).