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.
Vaults allow agents to use credentials securely, without making them available to the llms.
vaults_manual.py
from notte_sdk import NotteClientclient = NotteClient()# Creating a new vaultvault = client.Vault()# Add your credentials securelyvault.add_credentials( url="https://github.com/", email="<your-email>", password="<your-password>", mfa_secret="<your-mfa-secret>",)# remove a credential from the vaultvault.delete_credentials(url="https://github.com/")# list all credentials in the vaultcredentials = vault.list_credentials()print(credentials)# delete the vault when you don't need it anymorevault.delete()# you can also list your active vaults as follows:active_vaults = client.vaults.list()print(active_vaults)