/auto_self

자가진단 자동화 프로그램

Primary LanguagePython

Self Mecro

python selenium을 이용한 자가진단을 버튼 하나만 누르면 자동으로 완료가 되는 프로그램입니다.
pyautogui를 이용해 비밀번호 찾기 함수를 만들었고,
사용자 입력을 받아 list형식으로 index를 참조해 selenium에 적용시켰습니다.

# 비밀번호 입력 예시
list_password = list(password)
imgprefix = 'password\password_' 
imgsuffix = '.PNG'
for i in list_password:
    if(i != '\0'):
        text = pyautogui.locateOnScreen(imgprefix+i+imgsuffix, confidence=0.9)
    center = pyautogui.center(text)
    pyautogui.click(center)
    # t.sleep(1)
  • 비밀번호 사진 예시
  • 앞으로 추가할 일들

    • tinker를 이용해 Desktop App 만들기
    • 파일 모듈화 진행
  • 구현 영상

  • Window Destop App 진행사항 보기

현재 버전 v 1.0.1
제작자 : min050410
감사합니다