String tittle=driver.getTitle();
String currenturl=driver.getCurrentUrl();
System.out.println(tittle);
System.out.println(currenturl);
WebElement withgoogle = driver.findElement(By.xpath("//div[contains(text(),'Continue with Facebook')]"));
withgoogle.click();
}
}