Description
INTERACTIVE multi-step browser automation on a bring-your-own Playwright endpoint: run a SEQUENCE of steps (click, type, wait, navigate, extract) in the same stateful browser session — for flows that need real interaction, unlike the one-shot render nodes.
💡 Configuration example
JSON snippet of the node as it appears in the workflow. Values are derived fromdefaultValue and from required parameters.
{
"id": "node-action_browser_automate-1",
"defId": "action_browser_automate",
"label": "Browser: Automation",
"config": {
"startUrl": "https://portale.esempio.it/login",
"steps": "[\n { \"action\": \"waitFor\", \"selector\": \"#user\" },\n { \"action\": \"type\", \"selector\": \"#user\", \"text\": \"{{ $secrets.PORTAL_USER }}\" },\n { \"action\": \"type\", \"selector\": \"#pass\", \"text\": \"{{ $secrets.PORTAL_PASS }}\" },\n { \"action\": \"click\", \"selector\": \"button[type=submit]\" },\n { \"action\": \"extract\", \"selector\": \".report-total\", \"name\": \"totale\" }\n]",
"timeoutMs": 30000
}
}
Ready to use Browser: Automation?
Available now on all FlowForge plans. Try it free without a credit card.
Start freeBrowse all nodes