Wednesday 25 September 2013

Tutorial1

import org.openqa.selenium.firefox.FirefoxDriver;
public class Browsertest {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

FirefoxDriver dr1 = new FirefoxDriver();
dr1.get("http://www.google.com");

}

}