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

Selenium Tutorial : The path to the driver executable must be set by the webdriver.gecko.driver system property

Since last update of selenium 3, Most of the users(especially those who are new with selenium) are facing common issue with error “Exception in thread “main” java.lang.IllegalStateException: The path to the driver executable must be set by the webdriver.gecko.driver system property; for more information, see https://github.com/mozilla/geckodriver. The latest version can be downloaded from https://github.com/mozilla/geckodriver/releases” when … Read more