Skip to main content

Live Debugger

The Live Debugger lets you monitor and debug browser automation sessions in real time. It provides visibility into running sessions, making it easier to troubleshoot issues and optimize automation scripts.

Overview

The Live Debugger provides:

  • Real-time session monitoring: Watch browser sessions as they execute
  • Interactive debugging: Pause, step through, and inspect your automation
  • Network traffic inspection: Monitor requests, responses, and performance
  • Console output viewing: See JavaScript console logs and errors
  • Element inspection: Examine DOM elements and their properties

Getting Started

  1. Log in to Your Account

  2. Navigate to the Debugger

    • Once logged in, look for the "Debugger" section in the right menu
    • Click on it to open the Live Debugger interface
  3. Write and Debug Your Code

    • Write your Puppeteer code in the debugger interface
    • Press the play button to execute your code
    • Watch your browser session in real time as it runs and debug as needed
Run without installing libraries

If you'd prefer not to install Puppeteer locally, you can send your debugger code directly to the /function API as an HTTP request. This lets you run your code through clients such as N8N, Make, Zapier, or any conventional HTTP tool.

Next Steps