Tag Archives: Selenium Java

Selenium Webdriver – Java with JUnit

you can find a basic simple Java class written in JUnit format for Selenium Webdriver. JUnit has some advantages such as Assertions etc. in this post, you see without Assertion. i will write a post how to use Assertion soon .   import org.junit.*; import org.openqa.selenium.*; import org.openqa.selenium.firefox.FirefoxDriver; public class SimpleSeleniumJavaJunit { private WebDriver driver; @Before… 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 »