I am new to using Robot Framework. I want to accomplish the following: I'm writing an automated test case for a web application. In the application, there is a calendar from which I want to pick a date that is a day in the future from the current date. It is dynamic since the current date is relative to the date when the code will run. Any idea of what I can use?
I had two thoughts in mind, one: to select the current date which would highlight the day on the calendar and then use "Press Keys" to press the right arrow and then Enter which would select the next day of the current date second: to use the DateTime library to determine the current date and somehow to add 1 to the current date which would move the date a day in the future.
I'm not sure if any of my thoughts are doable. any help?
