How to build chatbot for one web portal?

Hi all,
Happy new year!!
I am building one chatbot where the requirement is open the web application and click on every button in that portal for every button takes to complete the action less than 10 minutes cab we use LLM here or directly try to build from scratch ?

chatbot healing-agent Agentic Automation

Hi @vhvinodsai
Happy new year

For your requirement, you don’t need an LLM. LLMs are useful for decision-making or generating code, but they cannot directly click buttons on a web page.

Since your task is rule-based (open web page → click all buttons → complete actions), it’s better to build directly in UiPath using:
• Open Browser / Attach Browser
• Find Children to get all buttons dynamically
• Click activity in a For Each loop
• Element Exists / delays to ensure actions complete

Use an LLM only if your portal is dynamic and requires interpreting content or making decisions. Otherwise, UiPath alone is faster, reliable, and enough.

If solution helps you please mark a solution so it help other too

Thanks & Happy Automations

Hi @vhvinodsai

Happy New Year! :tada:
For this scenario, it’s better to build the automation directly using UiPath rather than using an LLM to click buttons. LLMs aren’t reliable for deterministic UI actions.

Use selectors + retry logic + Healing Agent for stability.
LLMs/agentic automation work best for chatbot intent handling and decision-making, not for executing UI clicks.

If solution help you please mark as solution.

@vhvinodsai

Until and unless there are really unstable selectors or there are reasoning logics, you shouldn’t be thinking beyond traditional RPA.

LLM/LAM can be used for automating the Ui Element interactions.

For chatbots you can explore the conversational agent.

Thank you so much @ashokkarale

Let me try to build if I face any issues will share the details here!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.