Selenium Webdriver Element Locator – Locating Element By Name With Example

Selenium WebDriver/Selenium 2 is web and mobile software application regression testing tool and it is using element locators to find out and perform actions on web elements of software application. We have learn Element Locating by ID, Element Locating By Tag Name and Locating element by Class Name with examples in my previous posts. Locating Element By Name … Read more

Element Locators In Selenium 2 or WebDriver – Locating Element By Tag Name

We have learn about Locating element by ID and Locating element by Class Name for application software web page with examples in my previous posts. Let me repeat once more that if software web page’s element contains ID then we can locate element by its ID and if software web page’s element do not have ID and contains Class Name … Read more

Locating Web Element By ClassName In Selenium WebDriver with example

There are many different ways of locating elements in webdriver for your software web application page and I have described one of them in my PREVIOUS POST with example. In webdriver, we can’t do any thing on web page of software web application if you don’t know how to locate an element. As you know, … Read more

How To Locate Elements By ID In Selenium WebDriver With Example

Before using WebDriver software testing tool, You must be aware about different ways of locating an elements in WebDriver for software web application. Locating an element is essential part in selenium WebDriver because when you wants to take some action on element (typing text or clicking on button of software web application), first you need to locate that … Read more