I am trying to automate one search functionality in android native app. User can search from zip code,city,state name
The User has to enter zip code and hit search icon on android native keyboard .
Am able to enter zip code but not search . Tried below code for same nothing worked.
search is webelement here
search.sendKeys(Integer.toString(zipcode) + "\n");
search.sendKeys(Keys.Enter);
driver.pressKeyCode(84);