Why am I getting this error? please help me fix this

Message: Type activity verification failed.
Expected text: “Gwendolin”.
Actual result: “”.

Exception Type: UiPath.UIAutomationNext.Exceptions.VerifyActivityExecutionException

You have your Type Into activity set to verify that the correct value is typed in, and it’s telling you that the correct value has not been typed in.

This means the Verify / Check App State / Get Text step did not find the expected text on the UI. Your activity expected: “Gwendolin”. Actual result: “”. So UiPath did not read any text from that element at runtime.
Common ressons:

  1. the element is present, but the text is not loaded yet
  2. the selector points to the wrong UI element
  3. the page changed and the element became hidden, not attached, or stale

Please check below points:

  1. Re-indicate the target element.
  2. Use Highlight or Find Element to confirm UiPath is pointing to the correct control.
  3. Add a small delay / wait for element to appear before verification.

Happy automating!

Regards,
Dhruba