22

我看到这篇文章提到有一个 AutoIt3 COM 版本,用它我可以在 Python 中调用 AutoIt 函数。

我在 AutoIt 网站上找不到 COM 版本。它隐藏在某个地方吗?我怎么才能得到它?

4

2 回答 2

40

如何在 python 中使用 AutoItX COM/DLL

在 Python 中使用 AutoIt 有两种方法:

  1. pyautoit 模块
  2. 用于 Windows 扩展的 python (pywin32)

pyautoit 模块将使用 DLL,而使用 pywin32 我们可以使用 COM。据我所知,两者在功能上没有区别。

先决条件

  1. 安装python
  2. AutoIt的安装。
  3. pyautoitpywin32的安装。

并非所有 AutoIt 功能都可以通过 COM/DLL 接口使用。要查看哪些功能,请参阅 AutoItX 上的帮助文件。

Pyautoit

通过 pip 或您喜欢的方法安装:

pip install -U pyautoit

如果你得到一个错误:WindowsError: [Error 193] %1 is not a valid Win32 application安装pyautoit时,使用32位版本的python。我无法使用 64 位版本的 python 安装 pyautoit。当然,您的里程可能会有所不同。

导入和使用:

import autoit

autoit.run("notepad.exe")
autoit.win_wait_active("[CLASS:Notepad]", 3)
autoit.control_send("[CLASS:Notepad]", "Edit1", "hello world{!}")
autoit.win_close("[CLASS:Notepad]")
autoit.control_click("[Class:#32770]", "Button2")

autoit 命令都使用 lower_case_with_underscores 而不是 AutoItX 的首选 CamelCase。因此 ControlSend 变成 control_send,WinClose 变成 win_close 等等。

Pywin32

安装 pywin32 后,通过以下方式调用 AutoItX 函数:

import win32com.client
autoit = win32com.client.Dispatch("AutoItX3.Control")

autoit.Run("NotePad.exe")
autoit.ControlClick(WINDOW, "", "[CLASSNN:TTreeView1]", "left", 1, 53, 41)

如果您在使用此版本时遇到问题,请将所有内容安装为 32 位并重试。

于 2012-02-21T03:05:39.953 回答
10

AutoItX.dllAutoItX3_x64.dll包含在默认安装中,位于名为“AutoItX”的目录中。查看AutoItX.chm该目录中的帮助文件以获取更多信息。

于 2010-07-21T17:26:36.420 回答