python使用pywinauto实现桌面APP自动化测试

准备:

1、安装python,安装版本为2.7.14,并将python添加至系统变量。

2、安装pywinauto:

进入python安装目录,进入Scripts目录下,shift+右键,点击在此处打开命令窗口,输入命令:

pip install pywinauto,系统将自动下载并安装相应依赖库及pywinauto的库。

python使用pywinauto实现桌面APP自动化测试_第1张图片

   (笔记:

1.里面包含pywinauto安装需要的一些资源,适用于python2.7。包括pywinauto-0.6.1、SendKeys-0.3、pywin32-219.win32-py2.7、comtypes-1.1.3-2、six-1.4.1,SendKeys安装所需的依赖包VCForPython27.msi因为太大没有放上来,可以在其他地方下载。我在自己电脑上装过两次,亲测有效。

2.

Setup

  • Just run pip install --upgrade pywinauto (Py2.7+, Py3.3+)

or follow manual steps (if pip installation is not available due to your network restrictions):

  • Install pyWin32 extensions (no need for ActivePython)
  • Download six and install by python setup.py install
  • Download comtypes and install by python setup.py install
  • Download the latest pywinauto and run python setup.py install

or install on Linux:

  • six
  • python-xlib
  • Run python setup.py install for every dependency and for pywinauto package


以上方法未实验。)

你可能感兴趣的:(python使用pywinauto实现桌面APP自动化测试)