Click Activity is Neither Clicking Nor Erroring Out

Hello everyone,

I am working on my first UiAutomation project. Right now, I have a click activity that is supposed to click on a button on a web application. For some reason, the process has been failing to click the button. However, it does not throw an exception when it does not click the button, but I know it is not clicking it.

I have “continue on error” set to false. Is there some way I can make sure it clicks the button?

Thank you

Hi @edevries

Can you try by setting the WaitForReady as Complete in the Properties Panel?

Regards.

1 Like

@edevries

Use check app state activity to check button is accessible and ready before clicking on it

@edevries

The input method might be simulate…and few firlds might not work with simulate…just to check if the click is happening on right plce set the input method to hardware events …also in debug panel in studio select highlight elements so that you can see where it is trying to click while debug run

Also if page is not loaded completely then also click might happen but as page is not loaded it might not trigger the wvent so use wait for page load complete in properties

Cheers

1 Like