package dayOne;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class TestApp {
public static void main(String[] args) throws InterruptedException {
WebDriver d1 = new FirefoxDriver();
d1.get("https://www.google.co.in");
WebDriver d2 = new FirefoxDriver();
d2.get("http://www.bbc.com");
System.out.println(d1.getTitle());
System.out.println(d2.getTitle());
Thread.sleep(5000L);
d1.quit();
d2.quit();
}
}