Project Icon

Python-UIAutomation-for-Windows

Windows UI自动化Python库

Python-UIAutomation-for-Windows是一个基于Microsoft UIAutomation技术的Windows UI自动化库。它支持自动化MFC、Windows Form、WPF等应用程序,能遍历UI控件树、获取控件信息和模拟用户操作。该库适用于Python 3,可用于开发自动化测试和UI爬虫等应用。它提供丰富的API和示例,支持Windows XP SP3及以上系统。

uiautomation 模块

:cn:中文版介绍

不要使用 3.7.6 和 3.8.1 版本,comtypes 在这两个版本中无法正常工作。请安装较早版本或最新版本。 https://github.com/enthought/comtypes/issues/202

该模块适用于 Windows 上的 UIAutomation(Windows XP SP3、Windows Vista、Windows 7 和 Windows 8/8.1/10)。 它支持已实现 UIAutomation Provider 的应用程序的 UIAutomation,如 MFC、Windows Form、WPF、Modern UI(Metro UI)、Qt(部分支持)、Firefox(版本<=56 或 >=60)、Chrome 和基于 Electron 的应用(需要 --force-renderer-accessibility 命令行参数)。

我在业余时间开发了它,用于个人用途。

uiautomation 基于 Apache 许可证 2.0 共享。 这意味着代码可以自由复制和分发,使用时无需任何费用。

uiautomation1.x 支持 py2、py3,且不依赖任何第三方包。

uiautomation2.0+ 仅支持 py3,并依赖 comtypes 和 typing(Python3.5+ 内置)。 uiautomation2.0+ 与早期版本不向后兼容。请参阅 API 变更

你可以通过"pip install uiautomation"安装 uiautomation。安装完成后,调用 uiautomation 的 automation.py 将位于"C:\PythonXX\Scripts"中。 你可以使用此脚本遍历 UI 控件。

运行"C:\PythonXX\Scripts\automation.py -h"获取帮助。 运行 demos\automation_calculator.py 查看简单演示。

在 Windows 8/8.1 上,要自动化 Metro 应用,该应用必须位于前台。如果 Metro 应用切换到后台,uiautomation 将无法获取其控件信息。

另外,你应该以管理员身份运行 Python。否则,在 Windows 7 或更高版本上,uiautomation 可能无法枚举控件或获取控件信息。

系统要求:

Microsoft UIAutomation 最低支持客户端: Windows 7、Windows Vista SP2 及 Platform Update for Windows Vista、Windows XP SP3 及 Platform Update for Windows Vista [仅桌面应用]

Microsoft UIAutomation 最低支持服务器: Windows Server 2008 R2、Windows Server 2008 SP2 及 Platform Update for Windows Server 2008、Windows Server 2003 SP2 及 Platform Update for Windows Server 2008 [仅桌面应用]

C++ dll 源代码:UIAutomationClient


如何使用 uiautomation? 运行 'automation.py -h' 帮助

了解 automation.py 的参数,并尝试以下示例: automation.py -t 0 -n,打印当前活动窗口的控件,显示全名 automation.py -r -d 1 -t 0,打印桌面(控件树的根)及其子控件(顶层窗口)

顶层窗口

automation.py 打印控件的属性及其支持的模式。 你可以使用控件和模式获取控件信息并操作它们。

控件应该支持某些模式,或根据其控件类型有条件地支持某些模式。

模式

参考 UI Automation 客户端的控件模式映射 获取完整的控件模式表。

uiautomation 根据你提供的控件属性从控件树中搜索控件。

假设控件树如下:

根(Name='Desktop',Depth=0)   窗口1(Depth=1)     控件1-001(Depth=2)     控件1-...(Depth=2)     ...     控件1-100(Depth=2)   窗口2(Name='window2',Depth=1)     控件2-1(Depth=2)       控件2-1-001(Depth=3)       控件2-1-...(Depth=3)       ...       控件2-1-100(Depth=3)     控件2-2(Depth=2)     控件2-3(Depth=2)     控件2-4(Name='2-4',Depth=2)       编辑控件(Name='myedit1',Depth=3)       编辑控件(Name='myedit2',Depth=3)

如果你想找到名为"myedit2"的编辑控件并输入"hi", 你可以编写以下代码:

uiautomation.EditControl(searchDepth=3, Name='myedit2').SendKeys('hi')

但这段代码运行速度较慢,因为在控件树中 myedit2 之前有超过 200 个控件。 如果从根节点搜索深度为 3,uiautomation 必须遍历超过 200 个控件才能找到 myedit2。 更好的方法是:

window2 = uiautomation.WindowControl(searchDepth=1, Name='window2') # 搜索 2 次
sub = window2.Control(searchDepth=1, Name='2-4')    # 搜索 4 次
edit = sub.EditControl(searchDepth=1, Name='myedit2')   # 搜索 2 次
edit.SendKeys('hi')

这段代码运行速度比之前的更快。 你也可以将四行代码合并成一行。

uiautomation.WindowControl(searchDepth=1, Name='window2').Control(searchDepth=1, Name='2-4').EditControl(searchDepth=1, Name='myedit2').SendKeys('hi')

现在让我们以notepad.exe为例。 启动notepad.exe并运行automation.py -t 3,然后切换到记事本并等待5秒

automation.py将打印记事本的控件并将它们保存到@AutomationLog.txt中:

ControlType: PaneControl ClassName: #32769 Name: 桌面 Depth: 0 (桌面窗口,根控件)   ControlType: WindowControl ClassName: Notepad Depth: 1 (顶级窗口)     ControlType: EditControl ClassName: Edit Depth: 2       ControlType: ScrollBarControl ClassName: Depth: 3         ControlType: ButtonControl ClassName: Depth: 4         ControlType: ButtonControl ClassName: Depth: 4       ControlType: ThumbControl ClassName: Depth: 3     ControlType: TitleBarControl ClassName: Depth: 2       ControlType: MenuBarControl ClassName: Depth: 3         ControlType: MenuItemControl ClassName: Depth: 4       ControlType: ButtonControl ClassName: Name: 最小化 Depth: 3 (最小化按钮)       ControlType: ButtonControl ClassName: Name: 最大化 Depth: 3 (最大化按钮)       ControlType: ButtonControl ClassName: Name: 关闭 Depth: 3 (关闭按钮) ...

运行以下代码

# -*- coding: utf-8 -*-
# 此脚本仅适用于Win32版本的notepad.exe
# 如果你的notepad.exe是Windows 11中的Windows Store版本,你需要卸载它。
import subprocess
import uiautomation as auto

def test():
    print(auto.GetRootControl())
    subprocess.Popen('notepad.exe', shell=True)
    # 你应该先找到顶级窗口,然后从顶级窗口中查找子控件
    notepadWindow = auto.WindowControl(searchDepth=1, ClassName='Notepad')
    if not notepadWindow.Exists(3, 1):
        print('无法找到记事本窗口')
        exit(0)
    print(notepadWindow)
    notepadWindow.SetTopmost(True)
    # 在notepadWindow中查找第一个EditControl
    edit = notepadWindow.EditControl()
    # 通常你不需要捕获异常
    # 但如果遇到COMError异常,将其放在try块中
    try:
        # 使用值模式获取或设置值
        edit.GetValuePattern().SetValue('Hello')# 或者 edit.GetPattern(auto.PatternId.ValuePattern)
    except auto.comtypes.COMError as ex:
        # 可能你没有以管理员身份运行Python
        # 或者控件没有实现此模式方法(对此我没有解决方案)
        pass
    edit.SendKeys('{Ctrl}{End}{Enter}World')
    print('当前文本:', edit.GetValuePattern().Value)
    # 在notepadWindow中查找第一个TitleBarControl,
    # 然后在TitleBarControl中查找第二个ButtonControl,即最大化按钮
    notepadWindow.TitleBarControl().ButtonControl(foundIndex=2).Click()
    # 在notepadWindow中查找第一个Name为'关闭'的按钮,即关闭按钮
    # 从关闭按钮到记事本窗口的相对深度为2
    notepadWindow.ButtonControl(searchDepth=2, Name='关闭').Click()
    # 然后记事本会弹出一个窗口询问你是否保存,按快捷键alt+n不保存
    auto.SendKeys('{Alt}n')

if __name__ == '__main__':
    test()

auto.GetRootControl()返回根控件(桌面窗口) auto.WindowControl(searchDepth=1, ClassName='Notepad')创建一个WindowControl,参数指定如何搜索控件 可以使用以下参数 searchFromControl = None, searchDepth = 0xFFFFFFFF, searchInterval = SEARCH_INTERVAL, foundIndex = 1 Name SubName RegexName ClassName AutomationId ControlType Depth Compare

参数的注释请参见Control.init。 更多示例请参见demos文件夹中的脚本。

Control.Element返回低级COM对象IUIAutomationElement, Control的几乎所有方法和属性都是通过IUIAutomationElement COM API和Win32 API实现的。 当调用间接调用Control.Element的控件方法或属性,且Control.Element为None时, uiautomation开始根据你提供的属性搜索控件。 如果uiautomation在uiautomation.TIME_OUT_SECOND(默认10秒)内找不到控件,将引发LookupError异常。 如果uiautomation成功找到控件,Control.Element将具有有效值。 你可以使用Control.Exists(maxSearchSeconds, searchIntervalSeconds)检查控件是否存在,此函数不会引发任何异常。 调用Control.Refind或Control.Exists使Control.Element再次无效,uiautomation将开始新的搜索。

例如:

#!python3
# -*- coding:utf-8 -*-
# 此脚本仅适用于Win32版本的notepad.exe
# 如果你的notepad.exe是Windows 11中的Windows Store版本,你需要卸载它。
import subprocess
import uiautomation as auto
auto.uiautomation.SetGlobalSearchTimeout(15)  # 设置新的超时时间为15秒
def main():
    subprocess.Popen('notepad.exe', shell=True)
    window = auto.WindowControl(searchDepth=1, ClassName='Notepad')
    # 或使用Compare进行自定义搜索
    # window = auto.WindowControl(searchDepth=1, ClassName='Notepad', Compare=lambda control,depth:control.ProcessId==100)
    edit = window.EditControl()
    # 调用SendKeys时,uiautomation会在15秒内开始搜索窗口和编辑控件
    # 因为SendKeys间接调用Control.Element,而Control.Element为None
    # 如果窗口和编辑控件在15秒内不存在,将引发LookupError异常
    try:
        edit.SendKeys('第一个记事本')
    except LookupError as ex:
        print("15秒内未找到第一个记事本")
        return
    # 第二次调用SendKeys不会触发搜索,之前的调用已确保Control.Element有效
    edit.SendKeys('{Ctrl}a{Del}')
    window.GetWindowPattern().Close()  # 关闭第一个记事本,即使window和edit的Elements有值,它们也变得无效

    subprocess.Popen('notepad.exe')  # 运行第二个记事本
    window.Refind()  # 需要重新查找窗口,触发新的搜索
    edit.Refind()  # 需要重新查找编辑控件,触发新的搜索
    edit.SendKeys('第二个记事本')
    edit.SendKeys('{Ctrl}a{Del}')
    window.GetWindowPattern().Close()  # 关闭第二个记事本,window和edit再次变为无效

    subprocess.Popen('notepad.exe')  # 运行第三个记事本
    if window.Exists(3, 1): # 触发新的搜索
        if edit.Exists(3):  # 触发新的搜索
            edit.SendKeys('第三个记事本')  # edit.Exists确保edit.Element现在有有效值
            edit.SendKeys('{Ctrl}a{Del}')
        window.GetWindowPattern().Close()
    else:
        print("3秒内未找到第三个记事本")


if __name__ == '__main__':
    main()

如果automation.py无法打印您看到的控件。 可能是因为这些控件是由DirectUI(或CustomControl)构建的,而不是Microsoft提供的UI框架。 为了支持UIAutomation,UI框架必须实现UI Automation Provider

Microsoft UI Automation提供程序是一个软件对象,它暴露应用程序UI的一个元素,使辅助功能客户端应用程序能够检索有关该元素的信息并调用其功能。通常,UI中的每个控件或其他独特元素都有一个提供程序。

Microsoft为Microsoft Win32、Windows Forms和Windows Presentation Foundation (WPF)提供的每个标准控件都包含了一个提供程序。这意味着标准控件会自动暴露给UI Automation客户端;您无需为标准控件实现任何辅助功能接口。

如果您的应用程序包含任何自定义控件,您需要为这些控件实现UI Automation提供程序,以使它们对辅助功能客户端应用程序可访问。您还需要为不包含提供程序的任何第三方控件实现提供程序。您可以通过实现UI Automation提供程序接口和控件模式接口来实现提供程序。


Microsoft提供的另一个UI工具Inspect.exe也可以用来遍历UI元素。它有一个UI界面,而我的脚本在终端中显示UI元素。 但我发现有时我的脚本更方便。

Inspect


一些截图:

批量重命名PDF书签 bookmark

Microsoft Word
Word

Wireshark 3.0 (Qt 5.12) Wireshark

GitHub Desktop (Electron应用) GitHubDesktop

美化打印目录
PrettyPrint

捐赠:
微信 支付宝

项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

吐司

探索Tensor.Art平台的独特AI模型,免费访问各种图像生成与AI训练工具,从Stable Diffusion等基础模型开始,轻松实现创新图像生成。体验前沿的AI技术,推动个人和企业的创新发展。

Project Cover

SubCat字幕猫

SubCat字幕猫APP是一款创新的视频播放器,它将改变您观看视频的方式!SubCat结合了先进的人工智能技术,为您提供即时视频字幕翻译,无论是本地视频还是网络流媒体,让您轻松享受各种语言的内容。

Project Cover

美间AI

美间AI创意设计平台,利用前沿AI技术,为设计师和营销人员提供一站式设计解决方案。从智能海报到3D效果图,再到文案生成,美间让创意设计更简单、更高效。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号