Debug Playwright & Puppeteer Headless Browser Runs
Headless runs hide what actually happened; logs alone aren’t enough.
Debugging requires juggling local tools (Inspector/DevTools) and remote infra. You need a live, remote, in-browser debugger that understands your scripts.
Network-first Inspection
Inspect requests, headers, timing, and payloads inline.
Learn more
Works anywhere
Works with both Playwright and Puppeteer
Step-through & breakpoints
Pause at page.click()
and watch the DOM highlight your selector.
Pair with other features
Two options for getting past compulsory captchas
Hybrid Automations
Stream a page such as a login to your user one time, so they can interact with it and then store the cookie, cache or localstorage for another automation.
Learn more
Captcha Solving
After automatically solving a captcha you can store the cookie or keep the browser alive to skip repeat checks.
Learn more