Posts by the_RR • 31 points
2 posts
-
1
votes1
answer321
viewsA: Switch Windows Screen with Python
To activate a out of focus or minimized window, I usually use the function below. The 'win_name' argument must be the name of the process/window to maximize. def win_act(win_name): import win32gui…
-
1
votes1
answer432
viewsA: GUI automation with python
Is there any way that I can do this process with window minimized? No. It will be necessary to maximize the window so that image search methods (such as locateonscreen) can be used. To maximize a…