package org.sample; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class Lunch { public static void main(String[] args) { //config browser System.setProperty("webdriver.gecko.driver", "C:\\Users\\venkatesh\\eclipse-workspace\\Nisha\\Selenium1.30Batch\\Driver\\geckodriver.exe"); WebDriver driver=new FirefoxDriver(); //lanuch browser driver.get("https://www.facebook.com/"); //title of page String ti = driver.getTitle(); System.out.println(ti); //currentUrl of page String ur = driver.getCurrentUrl(); System.out.println(ur); } } --------------------------------------- package org.sample; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class Lunch { public static void main(String[] args) { //config browser System.setProperty("webdriver.chrome.driver", "C:\\Users\\venkatesh\\eclipse-workspace\\Nisha\\Selenium1.30Batch\\lib\\chromedriver.exe"); WebDriver driver=new ChromeDriver(); //lanuch browser driver.get("https://www.facebook.com/"); //title of page String ti = driver.getTitle(); System.out.println(ti); //currentUrl of page String ur = driver.getCurrentUrl(); System.out.println(ur); } }