Prototyping Tool with Network Request / API Call / socket.io
I am trying to find the right / best tool for the below use case:
I want to make a simple prototype with a tool that checks a website for some text. When this text changes, a corresponding image on the screen also changes.
For example:
- Assuming I have 2 assets in the library "apple.png" and "orange.png" & I can control a website that displays the names of the fruits.
- The prototype app first checks the website - it finds the text: "apple" -> Now the prototype reads this text and displays "apple.png"
- I then manually change the website to show the text "orange" -> Since the prototype checks the website every second or at some "X" frequency, and it now displays from its assets "orange.png"
Any suggestions on how to make this? Can it be done?
- Rest API / Socket.io / Network Request / Web Scraping
- Image display manipulation based on the result of above point
