2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: PuppeteerNode.executablePath
|
|
|
|
---
|
|
|
|
|
|
|
|
# PuppeteerNode.executablePath() method
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class PuppeteerNode {
|
2022-10-21 13:09:21 +00:00
|
|
|
executablePath(channel?: ChromeReleaseChannel): string;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-10-21 13:09:21 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ----------------------------------------------------------- | ----------------- |
|
|
|
|
| channel | [ChromeReleaseChannel](./puppeteer.chromereleasechannel.md) | <i>(Optional)</i> |
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
string
|
|
|
|
|
2022-10-21 13:09:21 +00:00
|
|
|
The executable path.
|