Forum Discussion
TanyaYatskovska
Alumni
12 years agoHi 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();
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();