@mjbaylon
Try something like the below:

Code:
function ExecuteScript() {
// Assuming 'dateValue' is the date you want to fill into the input field
var dateValue = "01-MAY-2024"; // Sample date format: YYYY-MM-DD
// Get the input element by its ID
var inputElement = document.getElementById("tempDate");
// Set the value attribute of the input element to the desired date value
inputElement.value = dateValue;
}
Thanks,
Deenuji Loganathan 👩💻
Automation Evangelist 🤖
Follow me on LinkedIn 👥
-------------------------------------------------------------------------------------------------------------
If I've helped solve your query, kindly mark my response as the solution ✔ and give it a thumbs up!👍 Your feedback supports future seekers 🚀