Activity Type into error

During an activity in UiPath Studio, I encountered the following error: “Activity Type verification failed.\r\nExpected text: "ADATUM CORPORATION\r".\r\nActual result: "".”," Does anyone know how to solve this?

Hi,

Does the TypeInto successfully input expected text?
And can you share verification settings of the TypeInto?
If it’s unnecessary to use verification, can you try to turn off verification.

Regards,

Hi @fabiocarra

The error can occur when UiPath cannot read the text back from the target field.
Try enabling ClickBeforeTyping, adding a delay after typing, switching input methods (Simulate / SendWindowMessages / Hardware), or fixing the selector to point to the actual input control. If the application doesn’t support UIA text retrieval, disable verification and validate using Get Attribute or Get Text instead.

Hope it help

Thanks & Happy Automations

Hi @fabiocarra

Try to remove the verification and then re-enable “Auto-Verification”.

Hey @fabiocarra,

There might be a issue which is about the text area.
I suggest you to try set clipboard and send ctrl+v hotkey. Then get text and check whether it is correct.

Hi @fabiocarra

the element was not ready or selector incorrect. re‑indicate selector, set wait for ready = complete, increase timeout, use check app state before verify, and trim expected text to match.

If helpful, mark as solution. Happy automation with UiPath

Hi @fabiocarra

If this solution work for you please mark as solved so thread will be closed

Thanks

HI @fabiocarra
UiPath is not finding the text, so it compares the expected value with an empty result.

Fix:
Add a wait (Timeout / Wait for Element), re-indicate the selector, or use Get Text + If condition instead of Verify Text.