I am completing the Generate Yearly Report exercise in the RPA Developer Advanced - Robotic Enterprise Framework Deep Dive training. Everything is working fine except the robot doesn’t read the alert message the “Report was uploaded…”
The Get Full Text activity is returning “” or a zero length string.
My selector is as follows:
I am not sure how to adjust the selector so it will read the text.
lakshman
(Ganta lakshman)
May 22, 2020, 1:28pm
2
@ToddPull
I guess you are using Chrome application.
Uipath recommended to use IE browser to automate ACME site and and also Uipath can easily identify those Pop-up’s.
If you want to continue with Chrome browser then use Computer Vision activities to read the data from those Pop-up’s.
mz3bel
(Mohssine HILAL)
May 23, 2020, 2:01am
3
Hello @ToddPull
Follow below link to fix ur issue…
Hello,
How to get Full Text for the “Comment” on Upload Yearly Report ?
To do so, you have to use Try Catch … Inside
On Try, add Get Full Text , for the first Pop Up, where there’s no “Check Box”, make sure that your selector, is dynamic as shown below
[image]
On Catch, add new catch, new exception, inside, add Get Full Text , for the second Pop Up, where you should have the “Check Box”, make sure that your selector, is dynamic as shown below
[image]
A…