Check this article 4 Ways to capture Tool tips in UFT
You can also capture the text property from the tooltips_class32 control using using MouseOver method ( for web objects) otherwise MouseMove method.
[Check the class type if your application use different class for tooltip object, using object spy)
You can also capture the text property from the tooltips_class32 control using using MouseOver method ( for web objects) otherwise MouseMove method.
Code:
' Mouseover
Browser("XXXX").Page("YYYY").Link("Link A").MouseOver
' Wait 1 second to get the tool tip displayed.
wait 1
' Capture the text of the tooltip object
txt= Window("nativeclass:=tooltips_class32").GetROProperty("text")
msgbox txt
[Check the class type if your application use different class for tooltip object, using object spy)