Quote: Warning or FailYou can not use GetRoProperty for an object which doesn't exist(in your case it may/'nt exist)
"If Browser("Wisdom").Page("Wisdom IA").Frame("parent").WebElement("No Results Found").GetROProperty("visible") = True Then" is not found.
My code gives me a warning or fails when WebElement("No Results Found") is not found. My goal is to check if the WebElement("No Results Found") is displayed,
so use .Exist method again as you used in first line
If Browser("Wisdom").Page("Wisdom IA").Frame("parent").WebElement("No Results Found").Exist(5) Then
And to make your code look better, use a function to test data availability by just passing date parameter and get the returned value as boolean found or not found
By the way "If" is not a loop, it's a conditional statement!