Our team has non-technical people who need to build and maintain webkit automation workflows. Our leadership asked whether we could actually use a visual builder to make this happen without hiring more engineers or forcing non-coders to learn JavaScript.
I decided to run a small experiment. Picked three non-technical team members, showed them a visual workflow builder, and had them build a simple webkit task: navigate to a site, extract data from a table, and save it to a spreadsheet.
Here’s what actually happened:
Day one: They figured out the basic drag-and-drop interface in about an hour. Connecting a “navigate” block to an “extract” block was intuitive. The interface was friendly enough that they didn’t feel lost.
Day two: They struggled. Creating the extract logic required understanding selectors. Even though the UI had helpers, they needed to actually identify the right HTML elements to target. That’s where the non-technical label started to break down. They had to open browser dev tools and inspect the page.
Day three: We blocked them. The table they were extracting from depended on JavaScript to render. They needed to add a wait block, but they didn’t understand what timing to use. Should they wait for a specific element? A specific class? How long should they wait? They couldn’t reason through it without understanding how web pages load.
The workflow eventually got built, but it required intervention. I ended up helping them debug the selector issues and set the right timing values.
So what’s the honest answer? The visual builder is realistic for the happy path. If your task is straightforward—navigate, extract simple content, save—non-developers can absolutely do it. But the moment you hit webkit rendering, selector specificity, or conditional logic, you need someone with technical understanding.
Maybe the question isn’t whether non-developers can build without code. Maybe it’s whether they can build with code-free tools if they have someone technical nearby to explain the concepts.
Has anyone else tried this? Did you find that non-technical people could truly own these workflows independently, or do they always need technical support?