package test.sel.java.org;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;public class Testing {
public static void main(String[] args) {
WebDriver driver = new ChromeDriver();
System.setProperty("webdriver.chrome.driver", "E:\\chromedriver.exe");
driver.get("https://google.co.in");
}
}