资源简介
安装如下(最好32位):
pip install pywinauto pip install SendKeys # SendKeys 需要VCForPython27.msi环境支持
VCForPython27(SendKeys需要).msi 官方下载
SendKeys中特殊字符的键代码
BACKSPACE {BACKSPACE}、{BS} 或 {BKSP}
BREAK {BREAK}
CAPS LOCK {CAPSLOCK}
DEL 或 DELETE {DELETE} 或 {DEL}
DOWN ARROW(下箭头) {DOWN}
END {END}
ENTER {ENTER} 或 ~
ESC {ESC}
HELP {HELP}
HOME {HOME}
INS 或 INSERT {INSERT} 或 {INS}
LEFT ARROW(左箭头) {LEFT}
NUM LOCK {NUMLOCK}
PAGE DOWN {PGDN}
PAGE UP {PGUP}
PRINT SCREEN {PRTSC}(保留,以备将来使用)
RIGHT ARROW(右箭头) {RIGHT}
SCROLL LOCK {SCROLLLOCK}
TAB {TAB}
UP ARROW(上箭头) {UP}
F1 {F1}
F2 {F2}
F3 {F3}
F4 {F4}
F5 {F5}
F6 {F6}
F7 {F7}
F8 {F8}
F9 {F9}
F10 {F10}
F11 {F11}
F12 {F12}
F13 {F13}
F14 {F14}
F15 {F15}
F16 {F16}
数字盘加号 {ADD}
数字盘减号 {SUBTRACT}
数字盘乘号 {MULTIPLY}
数字盘除号 {DIVIDE}
代码片段和文件信息
#! /usr/bin/env python
#coding=utf8
‘‘‘
FuncName: johnny-pywinauto.py
Desc: study pywinauto
Date: 2016-10-10 14:30
Author: johnny
Home:http://blog.csdn.net/z_johnny
‘‘‘
from pywinauto import application
import SendKeys
import time
class Pywin(object):
“““
pywin framwork main class
tool_name : 程序名称,支持带路径
windows_name : 窗口名字
“““
SLEEP_TIME = 1
def __init__(self):
“““
初始化方法,初始化一个app
“““
self.app = application.Application()
def run(self tool_name):
“““
启动应用程序
“““
self.app.start(tool_name)
time.sleep(1)
def connect(self window_name):
“““
连接应用程序
app.connect_(path = r“c:\windows\system32\notepad.exe“)
app.connec
相关资源
- JT808-2019协议测试工具
- Selenium2 Python自动化测试实战第二版高
- 《selenium2 python 自动化测试实战第二版
- 渗透测试sqlmap.rar
- Python测试驱动开发(第二版)中英文
- Introduction to Python Programming and Develop
- ABAQUSGUI程序开发指南PYTHON语言_139333
- Introduction to Machine Learning with Python 原
- Python GUI Programming Cookbook 2nd(AZW3+PDF)
- Math Adventures with Python: An Illustrated Gu
- SELENIUM2自动化测试实战基于PYTHON语言
- Selenium 2自动化测试实战 基于Python语言
- python Qt GUI快速编程 PYQT编程指南.pdf
- caffe windows prebuilt
- python界面图书管理系统—GUI界面版
- 《Python QT GUI快速编程 编程指南》书
- 《PYTHON QT GUI快速编程 PYQT编程指南》
- 《PYTHON QT GUI快速编程 PYQT编程指南》
- 代码:Python+TensorFlow+PyQt实现手写体数
- 2019NCT_Python_1级测试卷及答案
- python GUI井字棋
- python实现GUI界面的ATM系统
- 基于Python语言实现GUI爬虫程序可定向
- 基于python的接口自动化测试框架讲解
- python 接口自动化测试脚本demo
- python GUI编程(Tkinter) 创建子窗口及
- 20180913案例数据
- HTMLTestRunnerCN.py
- Python接口测试框架实战与自动化进阶
- Python GUI项目:文件夹管理系统代码
评论
共有 条评论