使用 PyWinAuto 控制当前 运行 个应用程序
Using PyWinAuto to control a currently running application
使用下面的代码我可以发现我要连接的当前 运行 window 名为 "Trade Monitor" 我如何成功连接到它?使用 app.start_ 方法无效。
from pywinauto import application
app=application.Application
app.findwindows #prints all windows running on machine
app.window("Trade Monitor") #error
只需使用app = Application().connect(title='Trade Monitor', timeout=10)
。
更详细的信息是 in the docs here.
使用下面的代码我可以发现我要连接的当前 运行 window 名为 "Trade Monitor" 我如何成功连接到它?使用 app.start_ 方法无效。
from pywinauto import application
app=application.Application
app.findwindows #prints all windows running on machine
app.window("Trade Monitor") #error
只需使用app = Application().connect(title='Trade Monitor', timeout=10)
。
更详细的信息是 in the docs here.