Appium tekan enter di android dengan js

// Use pressKeyCode with the keycode of the key you need. 66 is the code for ENTER
// If you want to use a different keycode search the keycode of your key on this page: "http://www.temblast.com/ref/akeyscode.htm".

await driver.pressKeycode(66);
Fancy Flatworm