Home » selenium-tutorial (Page 2)

Category Archives: selenium-tutorial

Newly Updated Posts

Related Topics

How to Select value from dropdown using selenium

Previous topic, In this tutorial we will learn select value from dropdown & multiple selection using selenium webdriver. Dropdown List box in selenium Webdriver can be handled using Select class. Select class in selenium provided the provision to select and deselect the options from the listbox using three approaches they are: by index , by […]

Continue Reading →

CheckBox & Radio button

CheckBox and Radio button both are handled in same way, it is generally can be handled by finding the locator and directly clicking on the element on Web Page but most of time it happens that the checkbox is by default checked and we need to verify and uncheck it or may be conditional check […]

Continue Reading →

Commands for WebElements

When we talk about WebElements, we talk about source code or HTML documentation of a Web page. Web Elements in the user interface are the elements that are due to the HTML tag or syntax that are written in Dom structure.These tags have starting and ending tag. So to interact with these webElements, first we […]

Continue Reading →

SqlServer Connection through JDBC in Selenium

Previous Topic, In this tutorial we are going to learn SqlServer Connection through JDBC in Selenium but before starting with connecting database we need to understand what is JDBC? JDBC: JDBC stands for (java database connectivity) is a java API that provides methods which helps in creating the connection with the database. that helps in […]

Continue Reading →

Object identification through xpath

Xpath: is basically extended as XML path, its basically a syntax or command by which we can allocate or find the elements of Web page in Html Dom Structure. The basic syntax for Xpath is: //Tag[@attribute=”Value”] There are basically two types of Xpath. 1) Absolute Xpath 2) Relative Xpath Lets discuss the above type of […]

Continue Reading →

Object identification on webdriver defined methods

Selenium Webdriver interacts with webpage through object identification. Identification of any web element is performed by reading its source code and finding the unique value of the defined webelement. Identification of object in selenium performed using findElement() and findElements(). There are few object identification techniques in webdriver . ) Locating Element By Id-> To locate […]

Continue Reading →

Running Test Case in Chrome Browser

Previous Topic,Running Test Case in Chrome Browser is simple as running in the other browser, difference is we need to provide the chrome driver on the path. Running Test Case in Chrome Browser? To Run the Test on chrome Browser follow the below steps one by one. Step 1) Click to Click Here link to […]

Continue Reading →

How To Download and Install selenium webdriver

Previous Topic, In this tutorial we will learn How To Download and Install selenium webdriver in java. How To Download and Install selenium webdriver? Now after the setup of eclipse and workspace in local system, we will now download the selenium webdriver java click from the link Click Here Save the zip to any preferred […]

Continue Reading →

First Test case Firefox (GeckoDriver with selenium)

How to write First Test case Firefox (GeckoDriver with selenium)? After completing the installation process in previous topic, its time to execute First Test case Firefox (GeckoDriver with selenium) script to understand how GeckoDriver with Selenium works. Whats is Gecko Driver? Gecko Driver:When we talk about Gecko it is coined to Gecko web browser which […]

Continue Reading →

Download Eclipse and configure

After the installation of Java and environment setup. Next step is how to download eclipse in your local system. Steps to Download Eclipse are as Below: Hit the Url->http://www.eclipse.org/downloads and click to download package link. It will redirect to “Download Package” window. Take the page webpage down and click to ” Eclipse IDE for Java […]

Continue Reading →