import time from pywinauto.application import Application app = Application(backend="uia").connect(path=r'C:\KiwoomGlobal\bin\nfrunlite.exe') print("App.windows()") print(app.windows()) app.Dialog.print_control_identifiers()
위 코드를 실행시켜 control의 목록을 뽑아보면, 아래와 같이 해당 기능을 추정할 수 있는 부분들을 찾을 수 있다.

app.Dialog.Edit8.type_keys(“0000”) 이런식으로 접근하면 될것 같았지만…안된다-_-
# | child_window(auto_id="1001", control_type="Pane") # | | # | | Edit - '' (L41, T93, R100, B111) # | | ['Edit8'] # | | child_window(auto_id="108", control_type="Edit") # | | # | | Button - '화면찾기' (L129, T89, R153, B113) # | | ['화면찾기', 'Button36', '화면찾기Button'] # | | child_window(title="화면찾기", auto_id="109", control_type="Button") # | | # | | Button - '' (L99, T86, R131, B116) # | | ['Button37'] # | | child_window(auto_id="110", control_type="Button") dlg = app.Dialog.child_window(auto_id="108", control_type="Edit") dlg.type_keys("3130") ## IT's Good
위와 같이 child_window로 해당 객체를 찾아와서(옵션은 print_control_identifiers() 함수에서 찍어주니까 그대로 복사해서 사용하면 된다) type_keys 함수를 통해 KEY 입력을 넘기면 영웅문에서 원하는 메뉴를 띄울 수 있다.