PythonUIAutomation4Windows UI 自动化

程序名称:PythonUIAutomation4Windows

授权协议: MIT

操作系统: Windows

开发语言: Python

PythonUIAutomation4Windows 介绍

使用Python封装Windows UIAutomation API,支持MFC,Windows
Forms,WPF,Metro,Qt,Firefox等程序的UI自动化,使得编写UI自动化脚本非常容易,支持平台Windows 7/8/8.1/10。

代码原理介绍

示例代码自动化操作记事本

!python3

-- coding:utf-8 --

import time
import subprocess
import automation

def AutomateNotepad():
automation.ShowDesktop()

打开notepad

subprocess.Popen(‘notepad’)

查找notepad, 如果name有中文,python2中要使用Unicode

window = automation.WindowControl(searchDepth = 1, ClassName = ‘Notepad’,
SubName = ‘无标题 - 记事本’)

查找edit

edit = window.EditControl()
time.sleep(1)
edit.SetValue(‘hi你好’)
edit.SendKeys(‘{Ctrl}{End}{Enter 2}Welcome to use Python UIAutomation for
Windows{! 4}{ENTER}’, 0.1)
time.sleep(1)
window.Close()
time.sleep(1)
buttonNotSave = window.ButtonControl(SubName = ‘不保存’)
buttonNotSave.Click()

or send alt+n to not save and quit

automation.SendKeys(‘{ALT}n’)

if name == ‘main’:
AutomateNotepad()

其它例子:

使用python
UIAutomation从QQ2016(8.0)群界面获取所有群成员详细资料

自动化重命名pdf书签

PythonUIAutomation4Windows 官网

http://git.oschina.net/yinkaisheng/PythonUIAutomation4Windows

相关编程语言

BlazeDS 是一个基于服务器的Java 远程控制(remoting...
OVal 是一个可扩展的Java对象数据验证框架,验证的规...
Volta 是一套开发工具,专为开发分布式、实时系统应...
OpenDDS 是一个开源的 C++ 实现的 对象管理组织 OMG...
JADE (Java Agent DEvelopment Framework) 是一个完...
FastMM ,在D2006和2007中已代替了原来的内存管理器。