使用PyWinAuto来控制当前运行的应用程序

时间:2016-08-18 15:17:38

标签: python windows pywinauto com-object

使用以下代码我可以发现我想要连接的当前运行的窗口名为“Trade Monitor”,我如何成功连接到它?使用app.start_方法不起作用。

from pywinauto import application
app=application.Application
app.findwindows #prints all windows running on machine

app.window("Trade Monitor") #error

1 个答案:

答案 0 :(得分:3)

只需使用app = Application().connect(title='Trade Monitor')即可。 更详细的信息是in the docs here