You might want to check out Lightpanda (https://github.com/lightpanda-io/browser). It's an open-source, lightweight headless browser built from scratch for AI and web automation. It's focused on skipping graphical rendering to make it faster and lighter than Chrome headless.
Show HN: Stagehand – an open source browser automation framework powered by AI
41–50 of 89 posts
Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#42I recently tried to implement a workflow automation using similar frameworks that were playwright or puppeteer based. My goal was to log into a bunch of vendor backends and extract values for reporting (no APIs available). What stopped me entirely were websites that implemented an invisible captcha. They can detect a playwright instance by how it interacts with the DOM. Pretty frustrating, but I can totally see this becoming a standard as crawling and scraping is getting out of control.
Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#43Hey Anirudh, Stagehand looks awesome, congrats. Really love the focus on making browser automations more resilient to DOM changes. The act, extract, and observe methods are super clean. You might want to check out Lightpanda ( https://github.com/lightpanda-io/browser ). It's an open-source, lightweight headless browser built from scratch for AI and web automation. It's focused on skipping graphical rendering to make…
Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#44I've been playing around with Stagehand for a minute now, actually a useful abstraction here. We build scrapers for websites that are pretty adversarial, so having built in proxies and captcha is delightful. Do you guys ever think you'll do a similar abstraction for MCP and computer use more broadly?
Thanks so much! Our Stagehand MCP server actually won Anthropic's Claude MCP hackathon :) Check it out: https://github.com/browserbase/mcp-server-browserbase/tree/m... We're working on a better computer use integration using Stagehand, def a lot of interesting potential there
Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#45Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#46Hey Anirudh, Stagehand looks awesome, congrats. Really love the focus on making browser automations more resilient to DOM changes. The act, extract, and observe methods are super clean. You might want to check out Lightpanda ( https://github.com/lightpanda-io/browser ). It's an open-source, lightweight headless browser built from scratch for AI and web automation. It's focused on skipping graphical rendering to make…
Lightpanda does look promising, but this is an important note from the readme: " You should expect most websites to fail or crash."
That said, the architecture's coming together and the performance gains we're seeing make us excited about what's possible as we keep building. Feedback is very welcome, especially on what APIs you'd like to see us prioritize for specific workflows and use cases.
Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#47Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#48wow. It's like cursor vs vscode movement but for browser automation and scrapping. Kudos to the author. Are there any other similar tools?
Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#49People must be excited for this since a lot of people are commenting for the first time in months or years to say how much they love it. Some people liked it so much they commented for the first time ever to say how great it is.
Re: Show HN: Stagehand – an open source browser automation framework powered by AI
#50Can it be adapted to use ollama? Seems like a good tool to setup locally as a navigation tool.
Yes, you can certainly use Ollama! However, we strongly recommend using a more beefed up model to get sustainable results. Check out our external_client.ts file in examples/ that shows you how to setup a custom LLMClient: https://github.com/browserbase/stagehand/blob/main/examples/... >