小弟刚刚学习QTP不久!
今天遇到个问题。
要求就是先判断按钮是否可以点击就是处于可用状态
如按键为disable刚不可用要给出提示。
现不知道怎么判断。 上网查不到! 请高手请点!谢谢
If Window("千千静听").WinObject("next").Exist (1) then
Window("千千静听").WinObject("next").click
end if
是不是类似这样的
哈哈,斤哥,这样就OK啦。。。
If Dialog("千千静听").WinObject("next").GetROProperty("enabled")=true Then
msgbox "aaa"
Window("千千静听").WinObject("next").click
else
msgbox "bbb"
End If
Dim next_istatus
next_istatus=Window("千千静听").WinObject("next").GetROProperty("enabled")
'判断next按钮是否可以
If next_istatus="True" Then
Window("千千静听").WinObject("next").click
else
MsgBox ("next按键Disable")