Skip to main content
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.
Source: node-sdk/src/functions.ts Function class for managing function runs

Create NotteFunction

Use NotteClient.NotteFunction to create this object from your configured client.
FunctionConstructor
required

Usage

  • createRun: Create a cloud run record without starting execution. Optional: use this only when you need the ID before execution, then pass it to run(variables, { functionRunId }). run() otherwise creates a new run.
  • run: Stream logs and wait for the final result by default. Pass { stream: false } to receive the backend’s JSON response without live logs. Disabling streaming does not make standard-runtime execution non-blocking. Pass functionRunId to execute a record returned by createRun().
  • getRun: Get metadata for a specific function run
  • download: Download the function code as a python file. Returns the code, and writes it to path when one is provided.
  • getUrl: Get the download URL of the function code, decrypting it when the API returns an encrypted one (Notte managed functions).
  • runs: List the runs of this function.
NotteClient
required
FunctionConstructor
required

functionId

decryptionKey