Using PyWinAuto to control a currently running application

27.5k Views Asked by At

Using the following code I can find that the currently running window I want to connect is named "Trade Monitor" how do i successfull connect to it? Using the app.start_ method does not work.

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

app.window("Trade Monitor") #error
2

There are 2 best solutions below

0
On BEST ANSWER

Just use app = Application().connect(title='Trade Monitor', timeout=10). More detailed info is in the docs here.

0
On

For anyone else who ended up here, the connect method @Vasily Ryabov mentioned works for PIDs too. Double Thanks to him as the docs he linked explain that.

app = Application().connect(process=1234, timeout=5)