How to press Enter using Selenium RC using C #?
I work SearchBoxwith help Selenium. In which I have to enter some name, and I have to click Enterto search.
There is no button Submit. Therefore I have to use Enter.
I tried something like this
selenium.KeyPress("quicksearchtextcriteria", "13");
But does not work.
Please, help.
Note. I made a set of possible ways to do this. See here: press enter key in selenium
source
share