Forum Discussion
5 Replies
- Hi Philip,
You can try increasing the value of the Method invoke timeout option - the application's objects may load longer on different computers. - philip1_gonzaleOccasional ContributorChanging the timeout to 7000 (double the default) did not resolve the issue
- Hi Philip,
Can you post here the detailed description of the first errors you get from Test Log's Additional Info tab?
- philip1_gonzaleOccasional ContributorHere are the log files for when certain objects are found and when they are not. This behaviour is also seen with TestComplete and occurs in versions 9.31, 10.10, and 10.20
- Hi Philip,
Thanks for the log files.
It looks like the test fails when trying to get access to objects on this block, right?
This is the first error you get:
Unable to find the object VBObject("lbPrice")
How are you accessing problematic VBObject? Can you replace your code with this one?
var block = //an object on which the lbPrice label is located
block.Refresh();
var price = block.WaitVBObject("lbPrice", 5000)
price.Click();