puppeteer/website/versioned_docs/version-10.0.0/puppeteer.connect.md

30 lines
690 B
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [connect](./puppeteer.connect.md)
## connect() function
This method attaches Puppeteer to an existing browser instance.
<b>Signature:</b>
```typescript
export declare function connect(options: ConnectOptions): Promise<Browser>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| options | [ConnectOptions](./puppeteer.connectoptions.md) | Set of configurable options to set on the browser. |
<b>Returns:</b>
Promise&lt;[Browser](./puppeteer.browser.md)&gt;
Promise which resolves to browser instance.
## Remarks