pywinauto安装路障

时间:2012-02-12 09:45:52

标签: python sendkeys pywinauto

我正在尝试在我的计算机上安装Pywinauto,以便我可以对它进行一些测试。但问题是我每次尝试安装时都会遇到以下错误。

C:\Users\Ganesha>python g:\pywinauto\pywinauto-0.4.0\pywinauto-0.4.0\setup.py install
  File "g:\pywinauto\pywinauto-0.4.0\pywinauto-0.4.0\setup.py", line 104
    except ImportError, e:
                      ^
SyntaxError: invalid syntax

我认为存在依赖关系,所以我想安装Ctypes和sendkey然后尝试。

首先,我正朝着正确的方向前进

所以我从http://starship.python.net/crew/theller/ctypes/安装了Ctypes 直接转发,msi文件并安装。

但是,sendkeys,我无法浏览/访问上述页面。

页面有问题吗? 如果不是我做错了什么? 还有什么地方可以从???

获得sendkeys

我在Windows 7机器上使用Python 3.2。

请帮助我并指导我。如果这是一个重复的问题/查询,请指出我之前的主题/问题并原谅我的无知。

此致 Vinu

2 个答案:

答案 0 :(得分:2)

似乎pywinauto用于python< 3,因为异常处理语法不适用于Python 3,因此您看到的错误。

见PEP 3110:

PEP 3110: Catching exceptions. You must now use except SomeException as variable instead of except SomeException, variable. Moreover, the variable is explicitly deleted when the except block is left.

你应该尝试使用Python2。*。

答案 1 :(得分:1)