I need to select a date with a datepicker, without a visible inputfield. I already found that it has an HTML hidden field with the corresponding date. How can I manipulate this with UIpath?
→ the datepicker (not stable enough to “manipulate” this via UIpath)
Well for this you have to use selectors, one of the most important parts in UiPath. In order to find and tune the selector use the UiExplorer(Design->rightside in the photo).
Check the official documentation:
After you target the wanted element you can store it in a variable and then on it you can use the Set web attribute
I think I found the problem. The HTML I see in “inspect element” is different than the “show source”. This means that the datepicker-HTML is generated trough Javascript. Can it be that because of this my selectors are not working? Cause I cant find them using the UIpath Explorer (I literally clicked through everything on the left “visual tree”).
For future reference, I’ve found the problem.
My selector was working, but apparently the value attribute reupdated after I went with “tabs” to the next field. So when I’ve put the “set web attribute” function last, the process was working.