I have the following helper method to input a string into an input field and press the enter key, but it seems the enter key is never pressed. I see the string entered into
find('#q_name').native.send_keys(:return)
works for me. I dont have a name or id for my field but the type is input so i used something like
find('.myselector_name>input').native.send_keys(:return)
works perfectly fine!