Date picker - click 2 days into the future

Try a review of this response to a similar Date Picker. Personally, you need to pick apart a Date, (manipulate the Date to get your day of month, then add two) and then search the calendar like a Web Table.

How to handle Date Pickers - Product Forums / Katalon Studio - Katalon Community

You will have to right click on the calendar GUI itself to get the pathway of <tr> and <td> to use.

Edit: you may have to take into account of going over the end of the month into next month. Looks like an excellent opportunity to do a “Part Two”–get the above working and then modify for this possibility.

Something like:
Date todaysDate = new Date().plus(2)
dayPart = todaysDate[Calendar.DAY_OF_MONTH]
monthPart = todaysDate[Calendar.MONTH]
yearPart = todaysDate[Calendar.YEAR] 

"set the month"

"set the year"

"set the day"
WebElement selCalendarTable = driver.findElement(By.xpath('//table[@class="**class name**"]/tbody'))

List<WebElement> Rows = selCalendarTable.findElements(By.tagName('tr'))

Loop:
for (int i = 0; i < Rows.size(); i++) {

	'To locate columns(cells) of that specific row'
	List<WebElement> Cols = Rows.get(i).findElements(By.tagName('td'))

	for (int j = 0; j < Cols.size(); j++) {

		if (Cols.get(j).getText().equals(dayPart.toString())) {
			WebUI.comment("found day ${dayPart}" )
			Cols[j].click();
			break Loop;
		}
	}
}