본문 바로가기
Software coding skill(python, web등)

pywinauto 8 - 어플리케이션 인스턴스 생성

by 호빵님 2020. 2. 11.
반응형

 

하나의 Application() 인스턴스를 생성하기 위해서, 

1) 해당 application이 실행이 안되어 있는 경우 : start() (해당 설정한 주소의 어플리케이션이 실행됨)

2) 해당 application이 이미 실행되어 있는 경우 : connect()

를 사용한다.

 

인스턴스 생성후, 이 인스턴스를 이용해서 접근을 하면된다.

 

아래의 pywinauto 공식 사이트 설명을 참고하기 바란다.

 

https://pywinauto.readthedocs.io/en/latest/HowTo.html#how-to-specify-a-usable-application-instance

 

How To’s — pywinauto 0.6.8 documentation

The windows handle of a window of the application, e.g. app = Application().connect(handle=0x010f0c)

pywinauto.readthedocs.io

 

반응형