Selenium IDE Down Arrow

I am stuck trying to get my selenium testing to simulate a down arrow key press.

I just use the html format for my tests and use typeKeys as a command, the target is correctly found for the value that I put in \ 40, which seems to convert to \\ 40 in the user interface. When I run the command, it finishes adding \ 40 to the current input value.

I am using the latest version of selenium ide from the site.

Any pointers?

Greetings

+3
source share
1 answer

Selenium provides its own methods for this task.

keyDown() typeKeys()

+6

Source: https://habr.com/ru/post/1781146/


All Articles