WebElement Locators – 2: By Xpath, Tag Name, Class Name, and CSS Selector

So in last article we have seen how to locate the WebElement using four locators and those are Name, Id, Partial Link Text and Link Text. Now in this article we are going to see the remaining four locators. Let’s start looking at them one by one. Locating element By Xpath: Xpath functions are very … Read more

WebElement Locators – Part – 1 – Selenium With Python

In this article, we are going to see how we can locate the web element to perform an action on it. Web element is the elements which are present on a webpage. Button, link, images, text boxes etc. this all are called as web element. So why do we need to locate the WebElement? The … Read more

Selenium Webdriver With Python – Basic Test script

Today we are going to see the basic things which we are going to use while making the selenium WebDriver scripts using python language. So below is some short example which we are going to see the uses of each line statement From selenium import webdriver From selenium.webdriver.common.keys import Keys driver = webdriver.Firefox () driver.get … Read more

Install Pydev in eclipse for selenium with python

Today we are going to see the installation of Python in Eclipse, so that we can use the python as a scripting language for writing the script for selenium WebDriver. Before that let’s see why python is preferred over java. Preference Python over Java with Selenium   There is an observation that most of the times … Read more