puppeteer/docs/api/puppeteer.puppeteernode.createbrowserfetcher.md
jrandolf f07ad2c661
fix: update documentation on configuring puppeteer (#9150)
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
2022-10-24 09:07:05 +02:00

30 lines
1.0 KiB
Markdown

---
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](./puppeteer.browserfetcher.md) manually.
#### Signature:
```typescript
class PuppeteerNode {
createBrowserFetcher(options: Partial<BrowserFetcherOptions>): BrowserFetcher;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ---------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
| options | Partial&lt;[BrowserFetcherOptions](./puppeteer.browserfetcheroptions.md)&gt; | Set of configurable options to specify the settings of the BrowserFetcher. |
**Returns:**
[BrowserFetcher](./puppeteer.browserfetcher.md)
A new BrowserFetcher instance.