How to enter smallercase char from android default keyboard

Hi All,

I want to enter Appium@1234 from android default keyboard. SendKeys() is not working.
I want to know how can i enter using android default keyboard.

I am using

((AndroidDriver) driver).pressKeyCode(AndroidKeyCode.KEYCODE_A);
but this is pressing lowercase

how toe enter uppercase

found the solution,. used driver.executeScript(“mobile: performEditorAction”, ImmutableMap.of(“action”, “a”));

1 Like