mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
22 lines
405 B
Markdown
22 lines
405 B
Markdown
---
|
|
sidebar_label: BrowserContext.isIncognito
|
|
---
|
|
|
|
# BrowserContext.isIncognito() method
|
|
|
|
Whether this [browser context](./puppeteer.browsercontext.md) is incognito.
|
|
|
|
The [default browser context](./puppeteer.browser.defaultbrowsercontext.md) is the only non-incognito browser context.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class BrowserContext {
|
|
abstract isIncognito(): boolean;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
boolean
|