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

Selenium IDE Example- Disabling or enabling JavaScript when running your test

JavaScript is the most important component of software web application. Developers generally using JavaScript to generate alert, to generate confirmation message, to handle client side validation etc.. If you will disable JavaScript of your browser then you will not get alert message or confirmation message or client side validation message on your action. Let we … Read more

Generate webdriver test report in HTML by running build xml file : Part – 3

We have seen how to configure system and eclipse in configuration part 1 and configuration part 2 posts to generate Selenium webdriver HTML test report. Now we have a test case and build.xml file in our project tree. Let me describe you few steps of configuring and running build.xml file in eclipse. Now follow the bellow … Read more