728x90
아이디랑 비번은 pyperclip 이용해서 복사 붙여넣기 한다 쳐도,
아이디, 비번, 엔터나 로그인 클릭에 걸리는 시간까지 2초씩 딜레이를 줘야 봇으로 인식을 안한다.
search = browser.find_element(By.XPATH, r'//*[@id="id"]')
search.click()
pyperclip.copy(ID)
search.send_keys(Keys.CONTROL, 'v')
time.sleep(2)
search = browser.find_element(By.XPATH, r'//*[@id="pw"]')
search.click()
pyperclip.copy(PW)
search.send_keys(Keys.CONTROL, 'v')
time.sleep(2)
search = browser.find_element(By.XPATH, r'//*[@id="log.login"]')
search.click()
728x90
'Python' 카테고리의 다른 글
could not detect version_main.therefore, we are assuming it is chrome 108 or higher (0) | 2023.12.02 |
---|---|
jupyter notebook 자동 줄바꿈 (0) | 2023.12.01 |
열려있는 크롬 창 selenium 사용하기 (0) | 2023.11.24 |
Binance Precision is over the maximum defined for this asset. (0) | 2023.11.24 |
RuntimeWarning: coroutine 'Bot.send_message' was never awaited (0) | 2023.11.22 |