Live data from Hacker News

Show HN: Workflow Use – Deterministic, self-healing browser automation (RPA 2.0)

github.com

11–20 of 25 posts

Re: Show HN: Workflow Use – Deterministic, self-healing browser automation (RPA 2.0)

#11
Very cool evolution!

Really great to see the fallback to the agentic run when the automation breaks. For our e2e testing browser automation at Donobu, we independently arrived at the same pattern and have been impressed with how well it works. Automatic self-healed PR example here: https://github.com/donobu-inc/playwright-flows/pull/6/files

edit: typo

Re: Show HN: Workflow Use – Deterministic, self-healing browser automation (RPA 2.0)

#13

Can utilizing Chrome Extensions be added? It seems no one has and would be a critical bridge to many browser tasks

Yes. Also, would love something that can run directly in my browser with my sessions

There’s a lot of websites that are super hostile to automation and make it really hard to do simple, small, but repetitive stuff with things like playwright, selenium, chromedriver

Re: Show HN: Workflow Use – Deterministic, self-healing browser automation (RPA 2.0)

#16
This is a really interesting direction, Gregor & Magnus! You're spot on about enterprises needing more robust and self-healing solutions for their high-frequency automation.

It's true that many are looking into self-healing for existing automation scripts; from what I've seen, tools like Healenium are gaining some traction in this space. However, I agree that a Browser Use-like approach also holds a lot of promise here.

My thinking on how this could be achieved with AI agents like Browser Use is to run the existing automation scripts as usual. If a script breaks due to an "element not found" exception or similar issues, the AI agent could then be triggered to analyze the page, identify the correct new locator for the problematic element, and dynamically update or "heal" the script. I've actually put together a small proof-of-concept demonstrating this idea using Browser Use: https://www.loom.com/share/1af87d78d6814512b17a8f949c28ef13?...

I had explored a similar concept previously with Lavague setup here: https://www.loom.com/share/9b0c7cf0bdd6492f885a2c974ca8a4be?...

Another avenue, particularly relevant for existing test suites, is how many QA teams manage their locators. Often, these are centralized in files like POM.xml (for Java/Maven projects) or external spreadsheets/CSVs. An AI agent could potentially be used to proactively scan the application and update these locator repositories.

For instance,

I've experimented with a workflow where Browser Use updates a CSV file of locators weekly based on changes detected on the website: https://www.loom.com/share/821f80fcb0694be4bd4d979e94900990?...

Excited to see how Workflow Use evolves, especially the self-healing aspects!

Re: Show HN: Workflow Use – Deterministic, self-healing browser automation (RPA 2.0)

#17

Can utilizing Chrome Extensions be added? It seems no one has and would be a critical bridge to many browser tasks

we built a chrome extension supporting browser use: https://github.com/nanobrowser/nanobrowser, feel free to implement workflow use on top of our code base in typescript. Love to learn how it works!

Re: Show HN: Workflow Use – Deterministic, self-healing browser automation (RPA 2.0)

#18
post #13

Can utilizing Chrome Extensions be added? It seems no one has and would be a critical bridge to many browser tasks

Yes. Also, would love something that can run directly in my browser with my sessions There’s a lot of websites that are super hostile to automation and make it really hard to do simple, small, but repetitive stuff with things like playwright, selenium, chromedriver

we built a chrome extension supporting browser use and can run locally in ur browser: https://github.com/nanobrowser/nanobrowser, feel free to implement workflow use on top of our code base in typescript. Love to learn how it works!

Re: Show HN: Workflow Use – Deterministic, self-healing browser automation (RPA 2.0)

#19
If any one wanna try it in browser can try implement it on our chrome extension code base in typescript: https://github.com/nanobrowser/nanobrowser, we support browser use and re wrote its code in typescript, not yet supporting workflow use and love to hear how it works from community!
Post reply on HN