Studio x ) enter a date on the web by using StudioX

Hello

I want to enter a date on the web by using StudioX. Activities such as type into cannot be used, and input can only be done by clicking.
I want to search for the period from the 1st of every month to the day before today. If anyone knows how to do it, please teach me.


@_ICNFBG_KIM_SE_JIN

Did you tried with select item activity?
i can see that those all dropdown so you can use select item activity to select the date. in the input field just enter your input.

Thanks,
Happy Automation!!

In your case - you need to identify the year, month and date separate from your input dates

Lets say that your from date is 12-Mar-2025 and saved in a variable named as FromDate

Step 1: Identify year, month and date using below expressions

year = Cdate(FromDate).ToString(“yyyy”)
Month= Cdate(FromDate).ToString(“MM”)
Day = Cdate(FromDate).ToString(“dd”)

Step 2: Use SelectItem activity and capture the drop down for year. In the value - Assign the year variable

Step 3: Do the similar for month and day as well

Step 4: Repeat same for To Date as well

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.