웹 브라우저에서 컴퓨터를 켰을때나 특정 일을 반복할때 유용한 자동화 테크닉이다. 코드부터 보자 우선 열려 있는 브라우저를 찾아야한다 아래는 크롬 브라우저를 찾는 함수다. # Chrome 브라우저 창을 찾는 함수 def findChromeWindow(): try: # xdotool 명령어 실행하여 Chrome 브라우저 창의 ID 가져오기 cmd = "xdotool search --onlyvisible --class Chrome" chromeWindowId = os.popen(cmd).read().strip() print('chromeWindowId', chromeWindowId) return chromeWindowId except Exception as e: print(f"오류 발생: {e}") retur..
python으로 xdotool을 사용해서 크롬 브라우저를 찾아 특정 포인트를 클릭해보자
웹 브라우저에서 컴퓨터를 켰을때나 특정 일을 반복할때 유용한 자동화 테크닉이다. 코드부터 보자 우선 열려 있는 브라우저를 찾아야한다 아래는 크롬 브라우저를 찾는 함수다. # Chrome 브라우저 창을 찾는 함수 def findChromeWindow(): try: # xdotool 명령어 실행하여 Chrome 브라우저 창의 ID 가져오기 cmd = "xdotool search --onlyvisible --class Chrome" chromeWindowId = os.popen(cmd).read().strip() print('chromeWindowId', chromeWindowId) return chromeWindowId except Exception as e: print(f"오류 발생: {e}") retur..
2024.03.07