How to click a button for every 10 sec

There is a button called refresh, which activity is used for it to click the refresh button for every 10 sec

Hi @anjani_priya

Try with Retry Scope activity

Regards,

1 Like

@anjani_priya ,

You can use the while condition with your condition

While -->Condition = True`

Click–> (Configure selector to target refresh button)
Delay–>Duration = 00:00:10`

2 Likes

Hi @anjani_priya

Try do while activity:
Do While (True) 
    Click Activity
    Delay Activity (00:00:10)
1 Like

The image shows three error messages stating "Retry Scope: Action failed to execute as expected." in red text. (Captioned by AI)
error after 4 retries

@anjani_priya

Try this

Do While (True)
    |-- Click 'Refresh' button
    |-- Delay (00:00:10)

1 Like

@anjani_priya ,

Dont use retry scope if you want to click the button for every 10 sec, you can use while or do while activity , so you can achieve your output

Hie @anjani_priya tryu this logic
variable type integer
image
image
cheers Happy Automation

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