[Ex] PyAutoGUI - MessageBox
1-1. 실행 전 준비특별한 창이나 환경 필요 없음1-2. 예제 코드import pyautogui# Alertresponse1 = pyautogui.alert(text='자동화 시작 전에 준비되었나요?', title='알림', button='확인')print('alert 응답:', response1)# Confirmresponse2 = pyautogui.confirm(text='계속 진행할까요?', title='확인', buttons=['예','아니오'])print('confirm 응답:', response2)# Promptname = pyautogui.prompt(text='이름을 입력하세요', title='입력 요청', default='홍길동')print('prompt 입력값:', name)# Pas..
2025. 7. 15.