Hello team,
I am trying to create a bot process to download a file from a website by selecting date and time where we cant type into.
Anyways to use html code to select the date and time also
Hello team,
I am trying to create a bot process to download a file from a website by selecting date and time where we cant type into.
Anyways to use html code to select the date and time also
Hi @Jezna_Jose1
Please check the below thread which is having the solution
Hello Team,
I need to select one day before data from 12 am to 12 pm
Hello Team,
I need to select one day before data from 12 am to 12 pm.
String.Format(
“”,
prevDay,
time
)
But its not working
This might helps
previousDay = DateTime.Now.AddDays(-1).ToString(“yyyy-MM-dd”)
startTime = DateTime.ParseExact(previousDay + " 00:00:00", “yyyy-MM-dd HH:mm:ss”, System.Globalization.CultureInfo.InvariantCulture)
endTime = DateTime.ParseExact(previousDay + " 12:00:00", “yyyy-MM-dd HH:mm:ss”, System.Globalization.CultureInfo.InvariantCulture)