鼠标点击按钮

时间:2016-03-15 11:12:13

标签: autoit

我用tkinter编写了一个简约的python程序,它在单击按钮时给出了一个示例文本。我现在想执行这个程序并单击带有autoit的按钮:

#include <MsgBoxConstants.au3>
#include <AutoItConstants.au3>

CalcTime()

Func CalcTime()
    Run("dist/min_tk_app.exe")
    Local $aPos = ControlGetPos("[CLASS:Button; INSTANCE:1]", "", "Edit1")
    MsgBox($MB_SYSTEMMODAL, "", $aPos)
    MouseClick($MOUSE_CLICK_LEFT, 324, 145, 1)
EndFunc

我通过自动窗口信息应用程序收到了此信息:[CLASS:Button; INSTANCE:1]。我总是只收到0作为$aPos的输出。你知道为什么会这样吗?

3 个答案:

答案 0 :(得分:1)

我假设您收到0作为$aPos的输出,因为Window还没有。在处理该窗口之前,您可以尝试使用WinWait

Run("dist/min_tk_app.exe")

; wait 10 seconds for the window to appear
WinWait("[CLASS:YourApp]", "", 10)

; maybe wait another second
Sleep(1000)

Local $aPos = ControlGetPos("[CLASS:Button; INSTANCE:1]", "", "Edit1")

答案 1 :(得分:1)

如果@ mrt的解决方案不起作用,我建议使用ControlFocus将焦点设置在控件上,然后ControlSend在控件上发送enter按钮。通常是预选OK按钮。如果不是这种情况,那么您可以发送TAB直到该按钮获得焦点并且发送输入。

答案 2 :(得分:1)

您使用的是ControlGetPos错误。

ControlGetPos ( "title", "text", controlID )

[CLASS:Button; INSTANCE:1]应该放在controlID,不要忘记窗口的标题(重要)!

无论如何,您应该使用ControlGetPos而不是MouseClickControlClick

$WinTitle = "" ; put your window title here MANDATORY or it will use active window
$WinText = "" ;can be left empty
ControlClick($WinTitle, $WinText, "[CLASS:Button; INSTANCE:1]")