mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
16 lines
378 B
Markdown
16 lines
378 B
Markdown
|
---
|
||
|
sidebar_label: BrowserLaunchArgumentOptions.userDataDir
|
||
|
---
|
||
|
|
||
|
# BrowserLaunchArgumentOptions.userDataDir property
|
||
|
|
||
|
Path to a user data directory. [see the Chromium docs](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/docs/user_data_dir.md) for more info.
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
interface BrowserLaunchArgumentOptions {
|
||
|
userDataDir?: string;
|
||
|
}
|
||
|
```
|