package webDriverScripts;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class Test2_chrome {
public static void main(String[] args) throws InterruptedException {
//This is the path: C:\Intelipaat\Software-New\chromedriver_win32
System.setProperty("webdriver.chrome.driver", "c:\\Intelipaat\\Software-New\\chromedriver-win32.\\chromedriver.exe");
WebDriver driver=new ChromeDriver();
driver.get("
https://www.facebook.com/");
Thread.sleep(5000);
driver.close();