mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.0 KiB
1.0 KiB
sidebar_label |
---|
BrowserContext.isIncognito |
BrowserContext.isIncognito() method
Warning: This API is now obsolete.
In Chrome, the default browser context can also be "icognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the default browser context instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the
--incognito
argument when launching the browser.
Whether this browser context is incognito.
In Chrome, the default browser context is the only non-incognito browser context.
Signature:
class BrowserContext {
abstract isIncognito(): boolean;
}
Returns:
boolean