How do handle data fields entry using RPA?

Type Into does not work here. Thus I have to hard code the date by selecting the calendar.
But my requirement is, date needs to be dynamically handled as the date data will come in an excel file and will vary from record to record.

How do i handle it, since type into is not working when i execute the bot.

image

image

Try inject script

image

datepicker.js
function(e,parameter) {
document.activeElement.value=parameter;
}

have u shared any screenshot? it does not open?

where do i put this command?
datepicker.js
function(e,parameter) {
document.activeElement.value=parameter;
}

It is not a command, it is a Javascript which you need to inject. Please refer the tutorial in this regard, then only you can understand the solution given by me.

image