Reputation: 21
I'm currently working on a mobile automation POC using the karate framework, trying to automate the Amazon app on my Android device.
in the script I enter a text the automatic options are not showing up in the app. so I try to press an enter key using the pressKeyCode
method in appium. I'm getting pressKeyCode
is not a function issue
Please find the script here and help to perform Mobile keyboard actions.
Upvotes: 1
Views: 437
Reputation: 21
you could try adding Key.Enter after the text
* driver.input('elementbyid', 'text' + Key.ENTER)
Upvotes: 1