mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
596 B
Markdown
24 lines
596 B
Markdown
|
---
|
||
|
sidebar_label: ProductLauncher.launch
|
||
|
---
|
||
|
|
||
|
# ProductLauncher.launch() method
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
interface ProductLauncher {
|
||
|
launch(object: PuppeteerNodeLaunchOptions): Promise<Browser>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | ----------------------------------------------------------------------- | ----------- |
|
||
|
| object | [PuppeteerNodeLaunchOptions](./puppeteer.puppeteernodelaunchoptions.md) | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<[Browser](./puppeteer.browser.md)>
|