Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

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

1 Answer

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...