I am using Selenium Java. I need to enter value into text box and press down arrow to select suggestions and then press Enter key.
So, my question is how to press Down Arrow key followed by "Enter" key?
I am using Selenium Java. I need to enter value into text box and press down arrow to select suggestions and then press Enter key.
So, my question is how to press Down Arrow key followed by "Enter" key?
For Ruby, this would be:
input_element = @driver.find_element(:id,'input_id')
input_element.send_keys(:arrow_down)
A list of special character keys can be found here