How to make the robot choose date from a pop up menu style calendar aka date picker, given that the date is taken as a input say using an input dialog or any other means of input.
Hi there…!
Normally I inspect the element and see how the data is picked. if the date picker accepts text then you can type the date using the same format but if not then you have to see what function is being run - so use an inject js activity for the function to run.
Find something similar to the following int he inspect element:
**$('.datepicker').pickadate() **
So run the function something like
function(YourFunctionName) { **function text goes here** };
Then the date will be picked.
Hope this helps
Regards