Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/279.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 问题是什么?:application.connect()错误_Python_Automation_Artificial Intelligence - Fatal编程技术网

Python 问题是什么?:application.connect()错误

Python 问题是什么?:application.connect()错误,python,automation,artificial-intelligence,Python,Automation,Artificial Intelligence,我是一个初学者,开始使用pywinauto学习自动化 使用application.connect()连接到已打开的程序时发生溢出错误 但是application.start()工作正常 如果有人知道这部分,请帮助我 源代码和错误内容如下所示 源代码: import pywinauto app = pywinauto.application.Application() app.connect(title_re='Calculator') OverflowError Traceback (mo

我是一个初学者,开始使用pywinauto学习自动化

使用application.connect()连接到已打开的程序时发生溢出错误

但是application.start()工作正常

如果有人知道这部分,请帮助我

源代码和错误内容如下所示

源代码

import pywinauto

app = pywinauto.application.Application()

app.connect(title_re='Calculator')
OverflowError Traceback (most recent call last)
in 

 1 import pywinauto

 2 app = pywinauto.application.Application()
 ----> 3 app.connect(title_re='Calculator')

d:\Anaconda3\lib\site-packages\pywinauto\application.py in connect(self, **kwargs)

 972 ).process_id

 973 else:

 --> 974 self.process = findwindows.find_element(**kwargs).process_id
 975 connected = True

 976

d:\Anaconda3\lib\site-packages\pywinauto\findwindows.py in find_element(**kwargs)

 82 so please see :py:func:find_elements for the full parameters description.

 83 """
 ---> 84 elements = find_elements(**kwargs)

 85

 86 if not elements:

d:\Anaconda3\lib\site-packages\pywinauto\findwindows.py in find_elements(class_name, class_name_re, parent, process, title, title_re, top_level_only, visible_only, enabled_only, best_match, handle, ctrl_index, found_index, predicate_func, active_only, control_id, control_type, auto_id, framework_id, backend, depth)

 279 return title_regex.match(t)

 280 return False

 --> 281 elements = [elem for elem in elements if _title_match(elem)]

 282

 283 if visible_only:

d:\Anaconda3\lib\site-packages\pywinauto\findwindows.py in (.0)

 279 return title_regex.match(t)

 280 return False

 --> 281 elements = [elem for elem in elements if _title_match(elem)]

 282

 283 if visible_only:

d:\Anaconda3\lib\site-packages\pywinauto\findwindows.py in _title_match(w)

 275 def _title_match(w):

 276 """Match a window title to the regexp"""

 --> 277 t = w.rich_text

 278 if t is not None:

 279 return title_regex.match(t)

d:\Anaconda3\lib\site-packages\pywinauto\win32_element_info.py in rich_text(self)

 81 def rich_text(self):

 82 """Return the text of the window"""

 ---> 83 return handleprops.text(self.handle)

 84

 85 name = rich_text

d:\Anaconda3\lib\site-packages\pywinauto\handleprops.py in text(handle)

 86 length += 1

 87

 ---> 88 buffer_ = ctypes.create_unicode_buffer(length)

 89

 90 ret = win32functions.SendMessage(

d:\Anaconda3\lib\ctypes_init_.py in create_unicode_buffer(init, size)

 286 return buf

 287 elif isinstance(init, int):

 --> 288 buftype = c_wchar * init

 289 buf = buftype()

 290 return buf

OverflowError: cannot fit 'int' into an index-sized integer
错误

import pywinauto

app = pywinauto.application.Application()

app.connect(title_re='Calculator')
OverflowError Traceback (most recent call last)
in 

 1 import pywinauto

 2 app = pywinauto.application.Application()
 ----> 3 app.connect(title_re='Calculator')

d:\Anaconda3\lib\site-packages\pywinauto\application.py in connect(self, **kwargs)

 972 ).process_id

 973 else:

 --> 974 self.process = findwindows.find_element(**kwargs).process_id
 975 connected = True

 976

d:\Anaconda3\lib\site-packages\pywinauto\findwindows.py in find_element(**kwargs)

 82 so please see :py:func:find_elements for the full parameters description.

 83 """
 ---> 84 elements = find_elements(**kwargs)

 85

 86 if not elements:

d:\Anaconda3\lib\site-packages\pywinauto\findwindows.py in find_elements(class_name, class_name_re, parent, process, title, title_re, top_level_only, visible_only, enabled_only, best_match, handle, ctrl_index, found_index, predicate_func, active_only, control_id, control_type, auto_id, framework_id, backend, depth)

 279 return title_regex.match(t)

 280 return False

 --> 281 elements = [elem for elem in elements if _title_match(elem)]

 282

 283 if visible_only:

d:\Anaconda3\lib\site-packages\pywinauto\findwindows.py in (.0)

 279 return title_regex.match(t)

 280 return False

 --> 281 elements = [elem for elem in elements if _title_match(elem)]

 282

 283 if visible_only:

d:\Anaconda3\lib\site-packages\pywinauto\findwindows.py in _title_match(w)

 275 def _title_match(w):

 276 """Match a window title to the regexp"""

 --> 277 t = w.rich_text

 278 if t is not None:

 279 return title_regex.match(t)

d:\Anaconda3\lib\site-packages\pywinauto\win32_element_info.py in rich_text(self)

 81 def rich_text(self):

 82 """Return the text of the window"""

 ---> 83 return handleprops.text(self.handle)

 84

 85 name = rich_text

d:\Anaconda3\lib\site-packages\pywinauto\handleprops.py in text(handle)

 86 length += 1

 87

 ---> 88 buffer_ = ctypes.create_unicode_buffer(length)

 89

 90 ret = win32functions.SendMessage(

d:\Anaconda3\lib\ctypes_init_.py in create_unicode_buffer(init, size)

 286 return buf

 287 elif isinstance(init, int):

 --> 288 buftype = c_wchar * init

 289 buf = buftype()

 290 return buf

OverflowError: cannot fit 'int' into an index-sized integer

如果您遇到问题,请尝试此方法。您必须说backennd是uia,它对我来说工作正常。

这应该是他桌面上的另一个应用程序的问题。它可以在pywinauto端处理,但我无法在自己端复制它。此问题可在此处跟踪: