Python 窗口查找
Posted guxingy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 窗口查找相关的知识,希望对你有一定的参考价值。
原文:https://www.cnblogs.com/zoro-robin/p/5591185.html
原文:https://www.cnblogs.com/aziji/p/10483242.html
import win32gui import win32api # 原文:https://www.cnblogs.com/aziji/p/10483242.html classname = "Chrome_WidgetWin_1" titlename = "在线翻译_有道 - Google Chrome" #获取句柄 hwnd = win32gui.FindWindow(classname, titlename) #获取窗口左上角和右下角坐标 left, top, right, bottom = win32gui.GetWindowRect(hwnd) print(left)
窗口的信息就通过这个工具得到的:窗口查找工具 WinSpy-1.0.3
窗口遍历:
之后补充
以上是关于Python 窗口查找的主要内容,如果未能解决你的问题,请参考以下文章