TypeError:' module'对象不能为SendKeys调用

时间:2014-04-15 09:52:33

标签: python python-2.7

我编写了这个简单的脚本,打开Goog​​le页面并在搜索栏中写入,但它只打开URL并在提示中报告错误。有人可以解释我出错吗?

import webbrowser
webbrowser.open_new_tab("http://www.google.com")

import win32api, win32con
import SendKeys
x = range(1,4)
for count in x:
    SendKeys('a', 0)

快速回复

Traceback (most recent call last):
  File "D:\SCRIPT\python\openandwrite.py", line 8, in <module>
    SendKeys('{a}', 0)
TypeError: 'module' object is not callable

1 个答案:

答案 0 :(得分:0)

此处SendKeys是模块,您想要访问该模块中的类:

SendKeys.SendKeys('a', 0)

或者,直接上课:

from SendKeys import SendKeys