I’ve been experimenting with the no-code builder for webkit browser automations, specifically trying to set up cross-Safari and Chromium tasks without touching JavaScript. The question I keep hitting is where the builder breaks down versus where it actually works.
For straightforward sequences—navigate to URL, wait for element, extract text—the drag-and-drop interface handles it fine. I set up a simple form autofill workflow in maybe 30 minutes visually, and it runs pretty reliably on both Safari and Chromium.
But then I tried something slightly more complex. I needed to handle cases where the same selector behaves differently in Safari versus Chrome due to rendering timing. That’s where I hit the first wall. The builder lets me add conditions, but it doesn’t have native awareness of webkit variant differences.
What I ended up doing was using the builder for the happy path and dropping into code only for the webkit-specific fallback logic. Not pure no-code, but honestly most of the workflow stayed visual.
I’m wondering—has anyone actually built a full webkit automation without any code, or does it always require some JavaScript somewhere for real-world rendering edge cases?