mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
26 lines
709 B
Markdown
26 lines
709 B
Markdown
|
---
|
||
|
sidebar_label: getInstalledBrowsers
|
||
|
---
|
||
|
|
||
|
# getInstalledBrowsers() function
|
||
|
|
||
|
Returns metadata about browsers installed in the cache directory.
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
export declare function getInstalledBrowsers(
|
||
|
options: GetInstalledBrowsersOptions
|
||
|
): Promise<InstalledBrowser[]>;
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | ------------------------------------------------------------------------ | ----------- |
|
||
|
| options | [GetInstalledBrowsersOptions](./browsers.getinstalledbrowsersoptions.md) | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<[InstalledBrowser](./browsers.installedbrowser.md)\[\]>
|