通过 RPyC 使用 Pywinauto 重新连接到 UIA 应用程序时出现 COM 错误

COM error while reconnecting to UIA app using Pywinauto through RPyC

我已经使用 pywinauto 连接到 windows 应用程序,如下所示,

import subprocess
sp = subprocess.call("start shell:AppsFolder\myapp!App", shell=True)

from pywinauto import application
app = application.Application(backend="uia")
my_app = app.connect(title="myapp", class_name="ApplicationFrameWindow")

但这是通过 Python 的 RPyC 连接。

第一次,此代码运行良好,但如果我 运行 我的脚本再次使用相同的 RPyC 连接,我会看到以下错误:

File "C:\Python27\lib\site-packages\pywinauto\application.py", line 944, in connect
self.process = findwindows.find_element(**kwargs).process_id
File "C:\Python27\lib\site-packages\pywinauto\findwindows.py", line 84, in find_element
elements = find_elements(**kwargs)
File "C:\Python27\lib\site-packages\pywinauto\findwindows.py", line 197, in find_elements
cache_enable=True)
File "C:\Python27\lib\site-packages\pywinauto\uia_element_info.py", line 272, in children
return self._get_elements(IUIA().tree_scope["children"], cond, cache_enable)
File "C:\Python27\lib\site-packages\pywinauto\uia_element_info.py", line 261, in _get_elements
ptrs_array = self._element.FindAll(tree_scope, cond)
COMError: (-2147024809, 'The parameter is incorrect.', (None, None, None, 0, None))

如果我关闭现有的 RPyC 连接并打开另一个会话,那么上面的代码可以正常工作。我无法弄清楚为什么会看到此错误。有什么想法吗?

这是一个已知问题,已在 master 分支中修复。即将发布pywinauto==0.6.4.