Maison >développement back-end >Tutoriel Python >Comment récupérer par programme la fenêtre active en Python ?
Obtention de la fenêtre active en Python
Problème : Comment puis-je accéder à la fenêtre active sur l'écran en utilisant Python ? Cette fenêtre pourrait être l'interface de connexion administrateur d'un routeur, par exemple.
Solution :
Sous Windows, vous pouvez utiliser les extensions Python pour Windows (pywin32) pour obtenir la fenêtre active. Voici comment procéder :
<code class="python"># Python 2 from win32gui import GetWindowText, GetForegroundWindow print GetWindowText(GetForegroundWindow())</code>
<code class="python"># Python 3 from win32gui import GetWindowText, GetForegroundWindow print(GetWindowText(GetForegroundWindow()))</code>
Exemple :
Le code ci-dessous imprime le titre de la fenêtre active à l'écran :
<code class="python">import win32gui window_handle = win32gui.GetForegroundWindow() window_title = win32gui.GetWindowText(window_handle) print(window_title)</code>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!