Selenium “keypress” command to press enter key with ASCII key codes

Using “keypress” command in selenium “keypress” command in selenium is very useful when you want to press keyboard keys like “Enter” key, “Up-Down arrows” key, “Backspace” key, “Shift” key, etc.. “keypress” command works like user pressing and then releasing that key. You need to provide targeted element locator (Where you want to press and release … Read more

How to download jmeter load testing tool – Steps to install jmeter performance testing tool guide

Apache JMeter Introduction Let me introduce to you about apache jmeter before install jmeter. Apache JMeter is pure Java software application and open source performance testing tool of software web application. Initially it was developed for software web application load testing but now its features are extended and you can use it for measuring performance … Read more

Using selenium “verifyelementpresent” and “waitForElementPresent” commands with example

How to use “verifyElementPresent” in selenium “verifyelementpresent” command in selenium is useful for verification of element presence on page. Selenium ide will verify element present and return “[error] false” if targeted element is not present on page. Else it will becomes pass. Verify element present in selenium will check availability of element on page. I … 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