Use this file to discover all available pages before exploring further.
AI agent instructions
STOP. Do not read past this section until you have read and followed /quickstart.md.Goal: produce a reliable SDK automation script. The intended authoring flow is generate then edit, not write browser automation from scratch.Do not hand-write SDK code with element IDs, selectors, or form fields from memory. Element IDs, selectors, and field mappings must come from a live observe() call, CLI notte page observe output, or generated workflow code. Guessed browser targets fail on real pages.Use the Notte skill and CLI to inspect the live site, validate actions/selectors, handle auth/session state, and export workflow code with notte sessions workflow-code before using SDK docs or SDK code.SDK reference pages are for understanding, running, or editing generated workflow code. They are not the starting point for manually authoring the initial browser automation. SDK-first code is guesswork on real-world pages with dynamic selectors, auth state, CAPTCHAs, and anti-bot behavior.
Massive is a residential proxy provider offering ethically-sourced IPs across 195+ countries. If you have a Massive account (or are considering one), you can plug their proxies directly into your Notte sessions using the ExternalProxy type.This is useful when you need residential IP rotation, geo-targeted traffic, or want to route your browser automation through a dedicated proxy provider.
Massive supports geographic and device-type targeting by appending parameters to your username string. You can target by country, state, city, device type, or any combination:
massive_geo.py
from notte_sdk.types import ExternalProxy# Target a specific countryus_proxy = ExternalProxy( server="http://network.joinmassive.com:65534", username="your-username-country-US", password="your-password",)# Target a specific stateca_proxy = ExternalProxy( server="http://network.joinmassive.com:65534", username="your-username-country-US-subdivision-CA", password="your-password",)# Target a specific citysf_proxy = ExternalProxy( server="http://network.joinmassive.com:65534", username="your-username-country-US-subdivision-CA-city-San Francisco", password="your-password",)# Target mobile devicesmobile_proxy = ExternalProxy( server="http://network.joinmassive.com:65534", username="your-username-device-mobile", password="your-password",)# Combine geo + device targetingcombined_proxy = ExternalProxy( server="http://network.joinmassive.com:65534", username="your-username-country-US-subdivision-NY-city-New York-device-mobile", password="your-password",)