Need to select date and time using http code

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

Check below video

Regards,

Hie @Jezna_Jose1 check this video for reference …to pick the date…

Cheers Happy Automation…

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)