Question #278723 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/278723

RaiMan posted a new comment:
ok, this makes sense.

Try the following loop:

app = App("your App")
for i in range(100):
    win = app.window(i)
    if not win: break
    print win

The problem of the App feature: it cannot detect, wether a window is
visible or not. There are many multi-window apps, that have many windows
open all the time and only switch between visible and invisible.

If this is the case, you have to filter somehow the above list you can
get.

For the future: please start such things as questions. If it turns out
to be a bug, we can do that later at any time. It makes my life a bit
easier. thanks.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to