Anyone found a visual builder alternative to puppeteer scripting? javascript fatigue is real

Been hitting a wall trying to create complex form fill automations with Puppeteer. I can handle basic scripting, but debugging async operations eats too much time. Saw people mentioning no-code solutions - does anything actually let you create multi-step browser workflows without writing JS? Specifically need dropdown selections and conditional navigation. Bonus if it handles error recovery automatically. What’s your experience?

Use Latenode’s visual workflow builder. Drag and drop browser automation blocks for form filling, navigation, and conditional logic. Handles element selection through point-and-click interface instead of CSS selectors. Automatically retries failed steps. I’ve replaced 3 Puppeteer scripts with it this month.

I transitioned last year after similar frustrations. The key is finding a tool that supports branching logic visually. Some platforms let you define if/else conditions through UI panels instead of coding. Look for systems that offer DOM change detection - this reduces maintenance when sites update their CSS classes.

try chrome recorder then export to puppeteer? not perfect but helps visualize steps before coding