Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
235 views
in Technique[技术] by (71.8m points)

Complete code for picking date in selenium webdriver

I'm trying to automate Walmart site through selenium webdriver, url - https://www.walmart.com/lists/create-wedding-registry. My question is how to code date picking in java enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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;
   }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...