2023-04-06 12:23:10 +00:00
|
|
|
---
|
|
|
|
sidebar_label: install
|
|
|
|
---
|
|
|
|
|
|
|
|
# install() function
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
export declare function install(
|
|
|
|
options: InstallOptions
|
|
|
|
): Promise<InstalledBrowser>;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ---------------------------------------------- | ----------- |
|
|
|
|
| options | [InstallOptions](./browsers.installoptions.md) | |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2023-04-06 14:47:26 +00:00
|
|
|
Promise<[InstalledBrowser](./browsers.installedbrowser.md)>
|