Want to select a date value from the calendar a day earlier

I don’t know what activities to insert into the ‘retry scope’ activity.
All I want is a process of finding a calendar, clicking on it, and then clicking on the date a day ago.
Is it right to use ‘select item’ and ‘assign’? Please let me know if there is a way.

  1. find element
  2. click
    next 3. ??

image

Hi @S_Sim

Welcome to UiPath community

You can use Type into activity and Type the date in this field.

Can you able to type the date manually in the field?

image

Regards
okulG

Yes, you can enter it.

Hi @S_Sim

You can use Type into activity

DateTime.Now.Tostring("yyyy.MM.dd")

image

Regards
Gokul

1 Like

thank you
now.AddDays(-1); 이걸 사용하면 되겠군요.

Yes You can tyry with this @S_Sim

DateTime.Now.AddDays(-1).Tostring("yyyy.MM.dd")

Regards
Gokul

1 Like

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