I have a case where the Click activity is giving me a positive response (it’s finding the link) but it’s not effectively clicking at the link.
To make the things worst, some times it works and some times it doesn’t.
It works 100% of the times in DEV and ACC environments but it breaks 90% of the times in PROD environment.
Did anyone have any clue on what that would be?
Neither of the cases there are errors. All success.
The error comes from the next activity, which depends on the “click”.
The “click” itself doesn’t happen and RPA thinks that the link was clicked.
Thanks. I’ll change that.
But I don’t think this might be causing the issue just because it works on other environments.
Not sure if this would be something with regards to environment configuration or setting.
the selector is always fix. Robot has to always click the same link ?
Can you please do inspect element of the link with UiExplorer and send the screenshot
What is annoying me is that it works 100% of the times on UiPath and non-Prod environments. But it fails in Production. But not 100% of the times. I can’t determine a pattern.
Put the web based activities (like Click) inside attach browser after opening the browser.
The selector for this Click…just use select of the last one from the inspector ‘title’ and try it like that.
Dont use this ‘aaname’ use ‘title’ instead and try
I see this to be a timing issue.
Many sites have all elements loaded. however basis some dependency, js later enables / disables the elements. Hence UiPath is able to find the element but the click doesn’t fail or even has any effect on the application.
solution here is to identify when the button element becomes responsive and only after that click it.
the reason it always works on lower environments is that they are faster on UI Switching as there is less data.
First very bad idea is to put a 5-10 sec wait before that click. That should be sufficient to make the button responsive.
Alternatively, you have to study your application closely to find what difference is there(Attribute wise) between an unresponsive element and responsive one. and then use that attribute in your selector.
Same click problem is happening with me. although have same code in uat and prod, and selectors are same, click activity is working in uat but not in prod. Should i not give any delay before clicking activity? Click imag eactivity works sometime and sometimes does not. what should be the best approach i should follow? Even in so, me textbox it is not writing within type into and in others it writes. I am using dynamic crm365 app. What could be the possible problem and solution for that. I have tried almost all ways.