-1

Scenario: enter image description here

I need to enter address
Press down arrow key
Press Enter Key

Manish Arya
  • 113
  • 1
  • 7

1 Answers1

0

DISCLAIMER: A lot depends on the JavaScript and how complex the page is. UI testing is hard, and such questions are impossible to answer remotely.

In theory this should work, refer docs: https://github.com/intuit/karate/tree/master/karate-core#input

* input('#someId', ['blah', Key.DOWN, Key.ENTER])

Else look at JS: https://stackoverflow.com/a/66887724/143475

Or it may be some "shadow DOM" complexity (quite likely for Google stuff): https://stackoverflow.com/a/64723635/143475

Peter Thomas
  • 54,465
  • 21
  • 84
  • 248