Using “storeXpathCount” in selenium ide with example

To understand how to use “storeXpathCount” command, you must be aware about xpath. You can read xpath tutorials for selenium ide in my previous post if you are not aware about what is the xpath of element and how to retrieve it manually. “storeXpathCount” command is useful to calculate and store number of matching nodes for the given … Read more

Selenium Xpath Tutorials – Identifying xpath for element with examples to use in selenium

Xpath in selenium is close to must required. XPath is element locator and you need to provide xpath during selenium test script creation. You need to provide any element locator(like id, name, css path, xpath etc.) in target column of selenium IDE software testing tool’s window to locate that specific element to perform some action … Read more

Selenium – Locating an element by “id” or “identifier” and “Name” element locators

First of all let me introduce you about element locators and why we need to use it. Element locators are useful to identifying GUI elements (button, link, textbox, dropdown, etc..) of HTML page. Selenium requires element locator to identify such elements to perform required action on that specific element.  There are many different types of … Read more

How to use regular expressions in IDE selenium plug in with example

Using Regular Expression Patterns with selenium Regular Expression Patterns is another matching text pattern which describe text pattern to selenium. There are another two matching text patterns(Globbing Patterns and Exact Patterns) are available but this is the most powerful matching text pattern from all these three. Regular Expression Pattern describes expected text pattern to selenium using … Read more