How to simulate a select

In selects you get an input event as if the user had typed something. If you want to know which is the selected option you will have write an event decoder that checks for all the options to see if the selected one is the last one, or simply make a decoder that in case of a select returns index of the selected option and the option count.

Check this example:
https://ellie-app.com/9WjXB3WJQ9Ca1

Keep in mind that the options of a select have very different implementation in mobile than in the browser, so I don’t recommend looking at them as regular HTML entities.