使用以下代码我可以发现我想要连接的当前运行的窗口名为“Trade Monitor”,我如何成功连接到它?使用app.start_方法不起作用。
from pywinauto import application
app=application.Application
app.findwindows #prints all windows running on machine
app.window("Trade Monitor") #error
答案 0 :(得分:3)
只需使用app = Application().connect(title='Trade Monitor')
即可。
更详细的信息是in the docs here。