This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now.
21 / 27
Mar 2017

Hi Ravi,

Tried running the script multiple times but no success. Even checked the keyboard settings but not found "Appium Android Input Manager" in the keyboard list.

After trying mentioned ways on web. I just thought to try other way, even though it is not correct but I had spent more time with this issue I tried following shortcut method:

After getting soft keyboard I just refreshed the page.
webdriver.navigate().refresh();

Please let me know if you have any suggestion.

Thanks Ravi.

1 month later

Thanks Telmo,
It's really helpful to handle the unstable functionality of poping up of device keyboard.

3 months later

Thanks Telmo, it worked !!

2 months later

Why not simple select an other element and click() on it to hide the keyboard? Like this:
await driver.waitForElementByAccessibilityId(‘donglePin’, 20000).elementByAccessibilityId(‘donglePin’).setText(donglePin);
await driver.waitForElementByAccessibilityId(‘donglePinEntryIcon’, 20000).elementByAccessibilityId(‘donglePinEntryIcon’).click(); //keyboard is hidden now

1 month later
1 month later

Tnx for your answer
for python:
desired_caps[‘unicodeKeyboard’] = True
desired_caps[‘resetKeyboard’] = True

2 months later