There is a website with a form that I need to fill automatically and then submit. Once this is done I need to check the results page and send a message to a user via Whatsap, Telegram or SMS. Sending an email is not out of question, but this is related to an extremely urgent event (like, the nuclear core is melting down) so I am not sure emails are a good choice because people miss them easily.
Questions
I am usually more of a back-end developer, I don’t know much about reading pages and filling them automatically. So naturally I have some questions:
Is it possible to do this with server side technologies using Elixir?
What tools would you use and why?
I know of Bamboo to send e-mails in Elixir, but I don’t know of any tool to send other types of notifications. Do you know any?
do you mean filling out form on 3rd party site and scrape/parse the result? then something like wallaby maybe - though it’s oriented towards testing… https://github.com/elixir-wallaby/wallaby
Unless this form is protected against CSRF, you could just write a small script to cURL POST the form, and pipe the answer to Telegram if it matches your alerting conditions.
Avoid SMS, as those come with no guarantee to go fast.