Application
Represents an application
The Application class is accessible via the pywinauto.application module.
Attributes
Methods
f start_(self, cmd_line, timeout=None, retry_interval=None) ...
Starts the application giving in cmd_line
f Start_(self, cmd_line, timeout=None, retry_interval=None) ...
Starts the application giving in cmd_line
f window_(self) ...
Return a window of the application
You can specify the same parameters as findwindows.find_windows. It will add the process parameter to ensure that the window is from the current process.
f Window_(self) ...
Return a window of the application
You can specify the same parameters as findwindows.find_windows. It will add the process parameter to ensure that the window is from the current process.
f Kill_(self) ...
Try and kill the application
Dialogs may pop up asking to save data - but the application will be killed anyway - you will not be able to click the buttons. this should only be used
f kill_(self) ...
Try and kill the application
Dialogs may pop up asking to save data - but the application will be killed anyway - you will not be able to click the buttons. this should only be used
See the source for more information.