Hey everyone
I’ve been building a few no-code automation workflows using n8n, and one of the key challenges I’m running into is browser automation at scale — especially when it comes to multi-account workflows and fragile websites.
Puppeteer and Playwright are great, but they tend to break easily when the site layout or selectors change (which happens a lot). Also, most headless solutions get flagged on certain sites that do deep fingerprinting.
So recently, I started experimenting with anti-detect browsers like Hidemium, which allow me to:
- Run multiple isolated browser profiles with different fingerprints/IPs
- Use natural-language prompt scripts (instead of hardcoding selectors)
- Control sessions via API or script triggers
I’m wondering:
- Has anyone here used Hidemium or similar tools with n8n?
- How do you handle the handoff between n8n and browser-level actions (like login, scraping, etc.)?
- Any tips on logging, chaining results, or handling failures gracefully?
The dream setup for me is:
- n8n triggers → sends prompt or task → browser does the UI interaction → sends results/logs back → n8n continues the flow.
Curious if others are combining these kinds of tools and what your experience has been like. Open to better suggestions too!
Thanks in advance