在 Python 中取得活動視窗
問題:如何使用 Python 存取螢幕上的活動視窗?例如,此視窗可以是路由器的管理登入介面。
解決方案:
在 Windows 上,您可以使用 Python for Windows 擴充功能(pywin32)來取得活動視窗。操作方法如下:
<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>
範例:
下面的程式碼在螢幕上列印活動視窗的標題:
<code class="python">import win32gui window_handle = win32gui.GetForegroundWindow() window_title = win32gui.GetWindowText(window_handle) print(window_title)</code>
以上是如何在 Python 中以程式方式檢索活動視窗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!