Forum Discussion
It's possible that there's just a timing issue. We find this when running tests on different machines. The object may be loading slower or the test running faster and then the object is missed.
There are a few ways to try fixing this.
A quick but not very elegant way to see if this is the issue is just to put a Delay right before the line where the error occurs. If this fixes it, you can just leave the delay in and move on.
Another way is to use one of the Wait statements to specifically look for that object.
A third way is to go to Project Properties under Playback and change the time between events to something a little longer. This has the effect of slowing your whole test down a little, but if you are seeing the not found error in several places, this may be an easier fix than the others.