Oracle EBS Forms and using RPA

Hi,
I am trying to run a process where Oracle forms are used but struggling to get text entered into a parameters field:

Error -
19.1.0+Branch.master.Sha.3db2bfe8751ed76c2c21f7ee16f53ff69a3e3b75

Source: Type Into ‘text Name’

Message: Cannot find the UI element corresponding to this selector:

Exception Type: UiPath.Core.SelectorNotFoundException

An ExceptionDetail, likely created by IncludeExceptionDetailInFaults=true, whose value is:
UiPath.Core.SelectorNotFoundException: Cannot find the UI element corresponding to this selector: ----> System.Runtime.InteropServices.COMException: Cannot find the UI element corresponding to this selector:
at UiPath.UiNodeClass.FindFirst(UiFindScope scope, String nodeID)
at UiPath.Core.UiElement.FindFirst(FindScope scope, Selector selector)
— End of inner ExceptionDetail stack trace —
at UiPath.Core.Activities.ScopeActivity.OnFaulted(NativeActivityFaultContext faultContext, Exception propagatedException, ActivityInstance propagatedFrom)
at System.Activities.Runtime.FaultCallbackWrapper.Invoke(NativeActivityFaultContext faultContext, Exception propagatedException, ActivityInstance propagatedFrom)
at System.Activities.Runtime.FaultCallbackWrapper.FaultWorkItem.Execute(ActivityExecutor executor, BookmarkManager bookmarkManager)

It looks like it’s not recongising the extra pop up.

Any advice is greatly appreciated

Scott

1 Like

@scotthutton - Can you try using the UI Explorer to identify the element?

2 Likes

It’s selector not found error …

  1. try to give dynamic selector and give proper ui element which should work for every form.
    2)use element exist or on element appear activity.
  2. Provide delay if you feel ,typing in form is getting enable little late.
  3. use simulate or send window message.
  4. use take screenshot activity in exception part of try catch activity to know that - if there any popup appearing .
  5. check click before typing .
  6. If during typing error is thrown , you can try set text activity also .
2 Likes

Thanks @sreenivasm @syedabidraza I managed to get it to work with a simple type into with no selector.

Hi @scotthutton,

Could you please mention more details regarding the solution that worked with you.

Thank You,

Are you facing selector not found exception?

HI @Hazem_Ghoraba, I used a simple “Type Into” activity with no selector. This allowed the process to type in the required information into the parameter field.

Capture

I’ve used this on a few process’s now and has worked seamless.

Hope this helps.