2022-10-21 13:09:21 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Configuration.browserRevision
|
|
|
|
---
|
|
|
|
|
|
|
|
# Configuration.browserRevision property
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
Specifies a certain version of the browser you'd like Puppeteer to use.
|
|
|
|
|
|
|
|
Can be overridden by `PUPPETEER_BROWSER_REVISION`.
|
|
|
|
|
|
|
|
See [puppeteer.launch](./puppeteer.puppeteernode.launch.md) on how executable path is inferred.
|
|
|
|
|
|
|
|
#### Signature:
|
2022-10-21 13:09:21 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
interface Configuration {
|
|
|
|
browserRevision?: string;
|
|
|
|
}
|
|
|
|
```
|
2022-10-24 07:07:05 +00:00
|
|
|
|
|
|
|
#### Default value:
|
|
|
|
|
|
|
|
A compatible-revision of the browser.
|