I'm using appium with java language for building IOS automation. So after successfully login i will be directed to TAC page. input TAC
The numpad will be automatically displayed and i have the TAC code separately. if we press the numpad one by one then it will be filled to the "o". my question is how to make it? i have tried
Map<String, Object> BackspaceKeyEvent = new HashMap<String, Object>();
BackspaceKeyEvent.put("key", "8");
getDriver().executeScript("mobile:key:event", BackspaceKeyEvent);
But not working
I just want to system press the number like 1,3,5,2,4,6 at that page
Thank you