Send down arrow key in ATS

0
Hello, I would like to add a step to one of my tests which simulates hitting the down arrow key. I tried a few variations using the SendKeys action, but I was unsuccessful. Is there a way to send this key using Send Keys, or possibly a custom javascript command?   Thank you,   - John Jacobs
asked
1 answers
0

Did you try using the key code for the down arrow  \ue015

https://seleniumhq.github.io/selenium/docs/api/py/webdriver/selenium.webdriver.common.keys.html

answered