Stealth features are enabled by default. Simply create a session:
from notte_sdk import NotteClientclient = NotteClient()with client.Session() as session: page = session.page page.goto("https://bot-detection-test.com") # Stealth features automatically active
Combine stealth mode with residential proxies for maximum anonymity:
from notte_sdk import NotteClientclient = NotteClient()with client.Session( proxies=True, # Enable residential proxies browser_type="chrome" # Use Chrome for best compatibility) as session: page = session.page page.goto("https://example.com")
from notte_sdk import NotteClientclient = NotteClient()# Session 1 with US proxywith client.Session(proxies="us") as session: # automation pass# Session 2 with UK proxywith client.Session(proxies="gb") as session: # automation pass
Test your stealth configuration against detection services:
from notte_sdk import NotteClientclient = NotteClient()test_sites = [ "https://bot.sannysoft.com/", "https://arh.antoinevastel.com/bots/areyouheadless", "https://fingerprint.com/demo/"]with client.Session(proxies=True) as session: page = session.page for site in test_sites: page.goto(site) page.screenshot(path=f"stealth_test_{site.split('//')[1].split('/')[0]}.png")
Combine stealth with automatic captcha solving for comprehensive protection:
from notte_sdk import NotteClientclient = NotteClient()with client.Session( solve_captchas=True, proxies=True) as session: page = session.page page.goto("https://example.com/login") # Both stealth and captcha solving active