Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.04 KB

File metadata and controls

28 lines (21 loc) · 1.04 KB
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)
[Anthropic Computer Use](/quickstart#sample-apps-reference) stops when it runs into a CAPTCHA. Use Kernel's auto-captcha solver by adding this to your prompt:
`"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.