sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #23362
Re: [Question #242049]: List the current process/application the system running
Question #242049 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/242049
obiwan-92 proposed the following answer:
Hello,
Well if you want find only one window, you can use :
app = App("youTitlePatern")
app.focus() # switch on the open window if it's not minimize
In python, you can also download dragonfly :
from dragonfly import Window
Window.get_all_windows()
In java, you can get the Java window like this :
Window.getWindows(); // return only the Java window
After, you can make a request in batch or shell to obtain all the
running process in your system.
Hope it's help
Regards.
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.