How to press Down Arrow key followed by “Enter” button in Selenium WebDriver?

后端 未结 6 830
没有蜡笔的小新
没有蜡笔的小新 2021-02-19 05:56

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 A

6条回答
  •  一向
    一向 (楼主)
    2021-02-19 06:37

    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

提交回复
热议问题