Selenium IDE “focus” and “keyUp” commands with example

“focus” Command in Selenium IDE “focus” is useful to set focus on targeted fields. Generally it is used with input fields like text box, text area, radio button, check box, button etc.. It will simply move cursor on targeted element or field. Selenium “keyUp” Command “keyUp” command is generally used with “keyDown” Command. Sometimes, “keyPress” … Read more

Selenium “keyDown” command to select value from auto complete field

Selecting value from auto complete field is little hard if you are not aware about proper key sequence technique. Just “type” command will not provide you list of value suggestions on auto complete field. “sendKeys” command will provide you list of value suggestions on auto complete field but to select value from that drop down, you … Read more