Uipath lost validated elements

Hi

I am trying to develop a robot but I have a problem with the validation:

the bot click the blue pencil on the right side then it appears a new form and I try to select an element with Studio on that form:

The validation seems also to be correct.

when the bot runs I receive the following error:

and it seem something wrong with the validation process:

Have you got any ideas or suggestions to solve that?

thank you in advance

Your selector is way too a-specific.
class = combobox can refer to any combobox in your application, even hidden ones.
Try making the selector more specific, or anchor it to a visible label in the window it belongs.

Also, in modern design experience:

  • revalidate your window selector
  • it can even help to target the popup as a new window, so using a separate (not nested) use application/browser container.

ensure that the selector is

  • unique and as specific as possible
  • as simple as possible

When using an anchor

  • Select an element as close as possible
  • Make it unique and as specific as possible

I have tried so, but without success.

I have also tried to open a new application/browser container to include the window “Umfangbearbeitung” but also here, the selector does not work properly

I has 2 same windows with the same name opened at the same time. I ensured that one is closed and after that UiPath could recognize the anchors and the target.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.