To Be Develop
from seleniumwebdrivercommonactionchains import ActionChains 본문
from seleniumwebdrivercommonactionchains import ActionChains
To Be Develop 2024. 11. 29. 00:31try:
chrome_driver = self.controller.chrome_driver
print("current_url: ", chrome_driver.current_url)
input("Press Enter key to continue...")
chrome_driver.switch_to.default_content()
print("Complete switch to default content")
reCAPTCHA iframe 찾기
frames = chrome_driver.find_elements(By.TAG_NAME, "iframe")
input("Press Enter key to continue...")
recaptcha_iframe = None
for frame in frames:
if "reCAPTCHA" in frame.get_attribute("title"):
recaptcha_iframe = frame
break
input("Press Enter key to continue...")
if recaptcha_iframe:
reCAPTCHA iframe으로 전환
chrome_driver.switch_to.frame(recaptcha_iframe)
print("Complete switch to reCAPTCHA iframe")
input("Press Enter key to continue...")
checkbox = WebDriverWait(chrome_driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "div.recaptcha-checkbox-border")))
actions = ActionChains(chrome_driver)
user_input = input("Do you want to click the checkbox? (Y/N): ")
if user_input.lower() == "y":
actions.move_to_element(checkbox).pause(random.uniform(1, 3)).click().perform()
else:
print("You didn't click the checkbox")
else:
print("No reCAPTCHA")
chrome_driver.switch_to.default_content()
except Exception as e:
print("\n\nNo reCAPTCHA\n\n")
'study' 카테고리의 다른 글
염화칼슘 다목적 화합물 산업과 일상에서의 활용법 총정리 (0) | 2024.11.29 |
---|---|
한국횟집 중랑역 인근 가성비 오마카세 맛집 (0) | 2024.11.29 |
원주 사고 대규모 연쇄 추돌의 전말과 안전 운전의 중요성 (0) | 2024.11.29 |
현대차증권 금융 서비스의 혁신을 선도하는 종합 금융사 (0) | 2024.11.29 |
현역가왕2 출연진 대한민국 최정상 남성 현역 가수들의 화려한 경연 (0) | 2024.11.29 |