Here are two code segments that I'm using to search for dates from a Calendar that has "From Date" and "To Date".
webDriver.findElement(By.xpath("//table/tbody/tr/a[contains(text(),'October 30')]")).click();
webDriver.findElement(By.xpath("//table/tbody/tr/a[contains(text(),'October 31')]")).click();
Error message shows: Exception in thread "main" org.openqa.selenium.NoSuchElementException: no such element: Unable to locate element: {"method":"xpath","selector":"//table/tbody/tr/a[contains(text(),'October 30')]"}
