Alternative for Sendkeys() Function

Is there an alternative for sendkeys() Function in Appium for Android ? The sendkeys() functions seems to be very slow.
Can it be done through adb or javascript executor?

2 Likes

Yes, you can use ADB shell for this purpuse. For example, to click menu button, you can use this command :smile:

adb shell input keyevent 82

Best regards,