-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathTestCalendars.java
71 lines (60 loc) · 2.81 KB
/
TestCalendars.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.SeleniumPractice;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import io.github.bonigarcia.wdm.WebDriverManager;
/**
* @author Yadagiri Reddy
* How to handle different types of calendar using Selenium WebDriver?
*/
public class TestCalendars {
public static void main(String[] args) throws Exception {
WebDriverManager.chromedriver().setup();
WebDriver driver = new ChromeDriver();
driver.manage().window().maximize();
driver.get("https://www.hyrtutorials.com/p/calendar-practice.html");
driver.findElement(By.id("first_date_picker")).click();
selectDate(driver, "05/June/2015");
driver.findElement(By.id("second_date_picker")).click();
selectDate(driver, "05/June/2025");
}
public static void selectDate(WebDriver driver, String date) throws Exception {
Calendar calendar = Calendar.getInstance();
try {
SimpleDateFormat targetDateFormat = new SimpleDateFormat("dd/MMM/yyyy");
targetDateFormat.setLenient(false);
Date formattedTargetDate = targetDateFormat.parse(date);
calendar.setTime(formattedTargetDate);
} catch (Exception e) {
throw new Exception("Invalid date is provided, please check the input date!!");
}
int targetMonth = calendar.get(Calendar.MONTH);
int targetYear = calendar.get(Calendar.YEAR);
int targetDay = calendar.get(Calendar.DAY_OF_MONTH);
String currentDate = driver.findElement(By.className("ui-datepicker-title")).getText();
calendar.setTime(new SimpleDateFormat("MMM yyyy").parse(currentDate));
int currentMonth = calendar.get(Calendar.MONTH);
int currentYear = calendar.get(Calendar.YEAR);
while(currentMonth < targetMonth || currentYear < targetYear) {
driver.findElement(By.className("ui-datepicker-next")).click();
currentDate = driver.findElement(By.className("ui-datepicker-title")).getText();
calendar.setTime(new SimpleDateFormat("MMM yyyy").parse(currentDate));
currentMonth = calendar.get(Calendar.MONTH);
currentYear = calendar.get(Calendar.YEAR);
}
while(currentMonth > targetMonth || currentYear > targetYear) {
driver.findElement(By.className("ui-datepicker-prev")).click();
currentDate = driver.findElement(By.className("ui-datepicker-title")).getText();
calendar.setTime(new SimpleDateFormat("MMM yyyy").parse(currentDate));
currentMonth = calendar.get(Calendar.MONTH);
currentYear = calendar.get(Calendar.YEAR);
}
if(currentMonth == targetMonth && currentYear == targetYear)
driver.findElement(By.xpath("//table[@class='ui-datepicker-calendar']//td[not(contains(@class,'ui-datepicker-other-month'))]/a[text()="+targetDay+"]")).click();
else
throw new Exception("unable to select the date because of current and target dates mismatch");
}
}