我用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
的输出。你知道为什么会这样吗?
答案 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
而不是MouseClick
和ControlClick
$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]")