This should be a fairly straightforward scenario for WebDriver - roughly, you'll want to do something along the lines of:
// First find the button that makes the date-picker element appear and click it.
driver.findElement(By.id("event-date-picker-input")).click();
// Then get hold of all the available dates.
List<WebElement> dateList = driver.findElement(By.className("dp_daypicker")).findElements(By.tagName("td"));
// Finally, iterate over all the available dates and click the one with the desired date.
for (WebElement date : dateList) {
if (date.getText().equals(whateverDateYouWant)) {
date.click();
break;
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…