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

LinkedHashMap Class In Java

LinkedHashMap class is one of the class of map interface which extends HashMap class and implements Map interface. It is combination of linked list and Hash table implementation of the Map interface and that’s why it is called LinkedHashMap. It is maintaining doubly-linked list insertion order in which keys were inserted into the map. It allows to store null elements and … Read more