Selenium IDE “verifyAttribute” and “assertAttribute” commands example

“verifyAttribute” and “assertAttribute” commands are useful for verification of values of an attribute of any node on the page of software web application. You can check value of an attributes like class, title, id, name, type, etc.. I got many questions about “Difference between assert and verify in selenium with example” so i will describe … Read more

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 css locators tutorial with example

As you know, Locators in selenium webdriver software testing tool are main elements and CSS Locator is another alternative of Xpath element locator, ID or Name locator or any other element locators in selenium webdriver software automation testing tool. Full form of CSS is “Cascading Style Sheets” and it define that how to display HTML elements on … 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