PythonUIAutomation4WindowsUI 自动化
使用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()
其它例子: