Hit limitations with basic try/catch in my no-code automation tool. Need custom retry logic for specific HTTP status codes and element visibility timeouts. Can I inject JS directly into Latenode’s visual builder? Want to maintain some low-code flexibility without full dev setup.
Yes - add custom JS nodes anywhere in your flow. We integrated Sentry for error tracking this way. The debugger shows variable states between nodes. Check their documentation on promise handling.
I created a wrapper function that intercepts all actions. It logs to a dashboard and retries based on error type. For visibility issues, added automatic screenshot capture on failure. Requires some coding but significantly improved reliability.
use puppeteer’s page.waitForSelector options. set timeout and visibility checks there. wrap in loop for retries