My use case is to open a web page, AskUxer the web page with my prompt, write the full telegram api url + {Response} and send the message, then close the browser.
It will send me telegram notification and keep me updated for important things to track.
Example code
OpenBrowser Chrome "<url here>"
{Response} = AskUxer "<your prompt here>" -UseScreenshot true
SendKeys CONTROL VK_L
Write "https://api.telegram.org/bot<YourBotToken>/sendMessage?chat_id=<YourChatID_without '-' >&text=<leave this empty unless you want to send static message>"
Write {Response}
SendKeys ENTER
SendKeys CONTROL F4
You can also replace this line
{Response} = AskUxer "<your prompt here>" -UseScreenshot true
with any workflow, for example scraping text/number and pass it to ‘{YourParameter}’ then replace Write {Response}
with Write {YourParameter}
or Write normal text.
Another use case is treat telegram bot as a simple notification/debugging system for your automation workflow.