Forum Discussion
Vallalarasu_P
11 years agoFrequent Contributor
I wish to use FindID method for my scenarios. But If I use find ID. The object is found.But operations on the output object is not happening . Can you help me one this?
The example below. Consider the object is a button
'=====Start========
vVerifybyID = BroObj.FindID(ID)
if vVerifybyID.Exists then
msgbox "Object Found"
vVerifybyID.Click
else
msgbox "Object Missing"
End if
'========end========
Considering my object is a button. I wish to click it. It find the object and the object exists. hence the message box of "Object Found" is displayed. but the object is N
OT CLICKED.
Correct me if I'm wrong. Let me know any solution for the same.
Thanks in Advance
The example below. Consider the object is a button
'=====Start========
vVerifybyID = BroObj.FindID(ID)
if vVerifybyID.Exists then
msgbox "Object Found"
vVerifybyID.Click
else
msgbox "Object Missing"
End if
'========end========
Considering my object is a button. I wish to click it. It find the object and the object exists. hence the message box of "Object Found" is displayed. but the object is N
OT CLICKED.
Correct me if I'm wrong. Let me know any solution for the same.
Thanks in Advance