简体   繁体   中英

print_control_identifiers() error in pywinauto

I am using pyautowin in WIN10, and I want to open a secure app to generate passcode. But after i find a window of app in script, the print_control_identifiers() function pops error, I'm not sure where goes wrong. Error Window? No controls in app? Please look into below errors.

Code like this:

from pywinauto.application import Application
app=Application()
app.start('C:\Program Files (x86)\RSA SecurID Software Token\SecurID.exe')
RSA=app.window_(title='000131843108 - RSA SecurID Token')
print RSA
print RSA.print_control_identifiers()

Error like this:

2016-12-30 11:54:01,525 INFO: Imported existing <module 'comtypes.gen' from         'C:\Python27\lib\site-packages\comtypes\gen\__init__.pyc'>
2016-12-30 11:54:01,526 INFO: Using writeable comtypes cache directory: 'C:\Python27\lib\site-packages\comtypes\gen'  
<pywinauto.application.WindowSpecification object at 0x039EA670>
Traceback (most recent call last):
  File "C:/New folder/ConnectVPN.py", line 7, in <module>
    print RSA.print_control_identifiers()
  File "C:\Python27\lib\site-packages\pywinauto\application.py", line 569, in print_control_identifiers
    this_ctrl = self.__resolve_control(self.criteria)[-1]
  File "C:\Python27\lib\site-packages\pywinauto\application.py", line 239, in __resolve_control
    raise e.original_exception
pywinauto.findwindows.ElementNotFoundError: {'process': 4064, 'backend': u'win32', 'title': '000131843108 - RSA SecurID Token'}

My app is like:

在此处输入图像描述

Is your app starting slowly? If it takes more than 5 seconds, the main window may not exist yet and the exception is raised. Just use RSA.wait('ready', timeout=10) to make sure the window exists before print_control_identifiers() .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM