Tag Archives: webdriver

Selenium Webdriver – Automation with Python

Hi people, today, i would like present an basic script example of Python for Selenium Webdriver. first line is a general Python code to use any printable string in utf-8 (# -*- coding: UTF-8 -*-) next line is import selenium webdriver module (from selenium import webdriver) create a Firefox driver and assigned it to a… Read More »

Selenium Webdriver – Automation with Java

Hi, One of the most used language to write Selenium Webdriver script is Java. you can find a basic simple Java class to run Selenium Webdriver. import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; public class SimpleSeleniumTest { public static void main(String[] args) { WebDriver driver = new FirefoxDriver(); driver.get(“http://www.mahsumakbas.net”); String element = driver.findElement(By.xpath(“//a[@class=’site-description’]”)).getText(); System.out.println(“Page title is:… Read More »