Forum Discussion
tristaanogre
14 years agoEsteemed Contributor
It sounds like there is a timing problem in your automation where the test is running faster than the application. So, the Text object gets returned blank because the automation is attempting to evaluate it before it has completely loaded.
As simply a diagnostic, try adding a call to aqUtils.Delay(5000) right before your line of code and see if that helps. If so, you might want to look into using something like WaitAliasChild or something to wait for an object to resolve before trying to retrieve the text.
As simply a diagnostic, try adding a call to aqUtils.Delay(5000) right before your line of code and see if that helps. If so, you might want to look into using something like WaitAliasChild or something to wait for an object to resolve before trying to retrieve the text.