Firing a keyboard event
For some pages without searching button, must input Enter key to get result, "fill" action may not work, you can use "runjs" action and write some code like this to fire the event:
evt = document.createEvent("KeyboardEvent"); evt.initKeyboardEvent("keyup", true, true, window, false, false, false, false, 13, 0) document.getElementById("suggestBoxEQ").dispatchEvent(evt);
"keypress" can be "keydown" and "keyup".