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)群界面获取所有群成员详细资料
PythonUIAutomation4Windows 官网
http://git.oschina.net/yinkaisheng/PythonUIAutomation4Windows