mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f07ad2c661
This PR updates the docs regarding configuring puppeteer. In addition, some changes have been made to the documentation generator to show default values on the documentation site. Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
1.0 KiB
1.0 KiB
sidebar_label |
---|
PuppeteerNode.createBrowserFetcher |
PuppeteerNode.createBrowserFetcher() method
Warning: This API is now obsolete.
If you are using
puppeteer-core
, do not use this method. Just construct BrowserFetcher manually.
Signature:
class PuppeteerNode {
createBrowserFetcher(options: Partial<BrowserFetcherOptions>): BrowserFetcher;
}
Parameters
Parameter | Type | Description |
---|---|---|
options | Partial<BrowserFetcherOptions> | Set of configurable options to specify the settings of the BrowserFetcher. |
Returns:
A new BrowserFetcher instance.