I have a special listbox that I could automate best by sending a down arrow and pressing enter.
I can press enter like so:
listbox_example = find(input, "listbox-example")
listbox-example.set("stuff")
#down arrow command goes here
listbox-example.native.send_keys :return
How do I write the down arrow command?