코딩/Python 4

[python] 텔레그램 봇으로 실시간으로 봇에게 온 메세지 포워딩하기

이 글은 python-telegram-bot 패키지 v20.8 이후 버전으로 작성 했습니다.검색해서 나온 예시가 v13.x 버전 위주 코드라 패키지 다운그레이드 해서 작성하니까 오류가 더 많이 터져서 공식 문서를 보고 작성했다.   Updater - python-telegram-bot v21.0.1Previous SimpleUpdateProcessordocs.python-telegram-bot.orgimport telegramimport gspreadimport loggingfrom telegram import Updatefrom telegram.ext import MessageHandler, Application, filtersimport osfrom dotenv import load_dotenvimp..

코딩/Python 2024.03.07

[셀레니움] is not clickable at point 오류

1. 오류메세지 Message: element click intercepted: Element ... is not clickable at point (1285, 836). Other element would receive the click: 2. 문제가 되는 코드 ul_gugun = findById('html_locallayer') il_gugun = ul_gugun.find_elements(By.TAG_NAME,'li') list_gu1 = random.randrange(0,len(il_gugun)) findByXPath(f'//*[@id="html_locallayer"]/li[{list_gu1}]/label').click() 3. 해결방법 태그의 부모태그인 를 클릭 하도록 수정 테스트 용 크롬이 나왔..

코딩/Python 2023.07.31