2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: BrowserConnectOptions.slowMo
|
|
|
|
---
|
|
|
|
|
|
|
|
# BrowserConnectOptions.slowMo property
|
|
|
|
|
|
|
|
Slows down Puppeteer operations by the specified amount of milliseconds to aid debugging.
|
|
|
|
|
2022-10-24 11:58:47 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
interface BrowserConnectOptions {
|
|
|
|
slowMo?: number;
|
|
|
|
}
|
|
|
|
```
|