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();
}
}
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCBRYydg_MjlEXFOVYLJmFcYgYuEw2tzp03KC47wIFJq-F5ySW-z1CVZQmVIvuuHKs5j_EC8Wdzruv4Hj9Knww214Rwzs6OwxnJu57wYQ87JYQJnA3joCvIYWpPCSBgPhPQpBfHctYPrV_/s1600/Screenshot_17.png)