| title | Stealth Mode |
|---|
Kernel browsers can be configured to stealth mode, which adds our recommended proxy configuration to your browser instances. It also adds a reCAPTCHA solver to the browser, so it automatically solves reCAPTCHAs on your behalf.
To turn on stealth mode, set its flag when instantiating Kernel browsers:
```typescript Typescript/Javascript const kernelBrowser = await kernel.browsers.create({ invocation_id: ctx.invocation_id, stealth: true, }); ```kernel_browser = client.browsers.create(invocation_id=ctx.invocation_id, stealth=True)`"If you see a CAPTCHA or similar test, just wait for it to get solved automatically by the browser."`
If you're looking for proxy-level configuration with Kernel browsers, see Proxies.