WebDriver driver= new FirefoxDriver();
driver.get("http://www.timeanddate.com/worldclock");
//html/body/div[8]/table/tbody/tr[2]/td[3]/a
//under table with class name <table class="border2 lpad wa wc-tab ccols4">
//String xpath="//table[@class='border2 lpad wa wc-tab ccols4']/tbody//tr[2]/td[3]/a";
// to write it as css selector
String cSelect = "table[class= 'border2 lpad wa wc-tab ccols4'] tbody tr:nth-child(2) td:nth-child(3) a";
System.out.println(driver.findElement(By.cssSelector(cSelect)).getText());
driver.get("http://www.timeanddate.com/worldclock");
//html/body/div[8]/table/tbody/tr[2]/td[3]/a
//under table with class name <table class="border2 lpad wa wc-tab ccols4">
//String xpath="//table[@class='border2 lpad wa wc-tab ccols4']/tbody//tr[2]/td[3]/a";
// to write it as css selector
String cSelect = "table[class= 'border2 lpad wa wc-tab ccols4'] tbody tr:nth-child(2) td:nth-child(3) a";
System.out.println(driver.findElement(By.cssSelector(cSelect)).getText());