Hi ,
I am using Studio Pro 2021.4.5 enterprise License.
I have written a sequence to perform series of repeated transactions via Excel application scope.
However , Automation reaches a Input box on the ERP screen and stops with the below error.
Could not find the UI element corresponding to this selector.
I tried changing browser from Chrome to Edge but still did not work.
Detailed error in the attachment. I am stuck at this step.
Activity : Type Into
Any thoughts. Thanks.
A delay won’t help. It already waits for the timeout as it looks for the element. The error means your selector is wrong. Show us your selector. Also, open UI Explorer, indicate the element, and post a screenshot of the available properties.
A selector of tag=‘INPUT’ type=‘text’ is going to match any textbox on the screen. Selectors must uniquely identify a single element. Check the box next to aaname, as aaname is unique to the UI element.
Also, that second line with the src URL probably isn’t going to work, it looks like a URL that will change. If you just use aaname you should be able to remove that second line (uncheck the box next to it in the “Selector Editor” tab)