I am trying to do press down-arrow key in the address search box after entering the address in Robot Framework
I'm using the Press Key keyword, but it's not working (it enters the key value in the text box) and I tried other methods, but the library is not added to red.
*** Settings ***
Documentation Test the Web site
Library Selenium2Library
Library pyautogui
Library OperatingSystem
Library ImageHorizonLibrary
*** Keywords ***
search the address
Open Browser http://localhost.com:4000 chrome
Maximize Browser Window
Input Text //*[@id=\"homepage\"]/section[1]/div[1]/div/div/div/app-address-search-bar/div/input newyork
press key //*[@id=\"homepage\"]/section[1]/div[1]/div/div/div/app-address-search-bar/div/input //25
I excepted that after I type the address in the text box, and I want to press the down-arrow key to select the address (from the drop-down-list).