I'm using the following and it's working fine:
string datum = System.DateTime.Today.AddDays(1).ToString("dd.MM.yyyy");
inputtagInfo.FindAdapter<InputTag>().PressKeys(datum);
But my testcase needs a day in a normal working week, no saturday or sunday. So I can't let this start on a friday

I would like to know the day of the week, so I could in case of friday just add 3 days.
I intented with DayofWeek, but it didn't work.
Someone an idea? I would appreciate, thanks

Best,
Karin