puppeteer/docs/api/puppeteer.puppeteer.connect.md

53 lines
654 B
Markdown
Raw Permalink Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Puppeteer.connect
---
# Puppeteer.connect() method
This method attaches Puppeteer to an existing browser instance.
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Puppeteer {
connect(options: ConnectOptions): Promise<Browser>;
}
```
## Parameters
<table><thead><tr><th>
2022-07-05 13:41:43 +00:00
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
options
</td><td>
[ConnectOptions](./puppeteer.connectoptions.md)
</td><td>
Set of configurable options to set on the browser.
</td></tr>
</tbody></table>
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;[Browser](./puppeteer.browser.md)&gt;
Promise which resolves to browser instance.
## Remarks