Click Activity Works in Attended Mode but fails in Unattended mode

Hello All,

I want to click on Save As in the following popup. It works well in attended mode but fails in PRD environment in Unattended mode

image

The Selector for it is as below

image

Use retry scope and try it.
Sometimes it will not click properly.

Hi @Chetan_Wagh

As this is the pop up add element exists before clicking on the save as button as it verifies if the save as pop up is there or not. Use output of the element exits in if activity for navigation of next steps.

Also configure a anchor for the click

Hope this helps :slight_smile:

@Chetan_Wagh

*When using the “Click” activity, consider enabling the “SimulateClick” property. Similarly, for typing, enable the “SimulateType” property. This can improve compatibility in unattended mode.

*Inspect and adjust the selectors used in the automation. In unattended mode, there might be differences in how UI elements are identified. Use UiExplorer to validate and modify selectors as needed.

Cheers!!

Your click activity is Modern or Classic?

Its modern click activity. I also tried with Classic click activity

Just take classic click activity and in properties → Expand Target option → Turn on “Wait for ready” to Complete option. (if requires then put delay before to 5000)

Hope it works

Thankyou