Set Locator Builders Preference in Selenium IDE

Locator in selenium IDE are used for locating an element on page. Selenium IDE support many types of locators like name, id, CSS and  XPath, dom, ui etc.. and from all of them, mostly used locators are name, id, CSS and XPath. Selenium IDE has a facility to set your preferred locator to record it. That means during recording, which locator … Read more

Selenium “verifySelectOptions”, “verifySelectedLabel” and “verifySelectedIndex” Example

“verifySelectOptions”, “verifySelectedLabel” and “verifySelectedIndex” commands works with drop down list box or multi select list box. Let me explain all of three first and then will see them with example. Selenium IDE “verifySelectOptions” Command “verifySelectOptions” command used for verification of list box option values. It will show error message if defined values not available in … Read more

selenium “storeCssCount” and “verifyCssCount” Commands with Example

CSS element locators are very strong and important for not only selenium IDE but also for selenium RC, webdriver and all other versions of selenium. I suggest you to read my post about CSS Locators for selenium IDE first, where i described many different ways of writing CSS path for any node of page with … Read more