플그래밍/파이써언

[파이썬] Selenium - HTTP Error 404: Not Found

훗티v 2024. 5. 1. 12:26

Selenium Undetected_Chromedriver 사용 시 발생하는 HTTP Error 404: Not Found 에러 해결 방법입니다.

HTTP Error 404: Not Found

 

undetected_chromedriver를 최신버젼인 3.5.5로 업그레이드하면 해결됩니다.

pip install --upgrade undetected_chromedriver

 

그래도 해결이 안되는 경우 삭제 후 재설치하면 됩니다.

pip uninstall undetected-chromedriver
pip install undetected-chromedriver

 

 

 

 

 

[플그래밍/파이써언] - [파이썬] Selenium - AttributeError 해결하기

 

[파이썬] Selenium - AttributeError 해결하기

AttributeError: 'WebDriver' object has no attribute 'find_element_by_id' Selenium(파이썬) 사용 시 위와 같은 에러가 발생했을 때 해결하는 방법입니다.# 임포팅from selenium.webdriver.common.by import By# 기존 코드driver.find_

hoood.tistory.com

[플그래밍/파이써언] - [파이썬] Selenium - 모든 쿠키 추출하기

 

[파이썬] Selenium - 모든 쿠키 추출하기

Selenium으로 접속한 사이트의 모든 쿠키를 추출하는 기능입니다. from selenium import webdriver driver = webdriver.Chrome() driver.get("https://www.naver.com") # 모든 쿠기 추출 cookies = driver.get_cookies() print("All Cookies:",

hoood.tistory.com

[플그래밍/파이써언] - [파이썬] Selenium - 자바스크립트로 스타일(css) 변경하기

 

[파이썬] Selenium - 자바스크립트로 스타일(css) 변경하기

Selenium으로 사이트를 연 후 특정 요소의 스타일을 변경하는 방법입니다. from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.chrome.options import Options chrome_options = Options() chro

hoood.tistory.com

[플그래밍/파이써언] - [파이썬] Selenium - 여러 탭 열기 및 이동하는 방법

 

[파이썬] Selenium - 여러 탭 열기 및 이동하는 방법

Selenium으로 세 개의 사이트를 연 후 탭 이동하는 방법입니다. from selenium import webdriver import time driver = webdriver.Chrome() # 첫 번째 탭 열기 driver.get("http://www.daum.net") time.sleep(1) # 1초 대기 # 두 번째 탭

hoood.tistory.com

[플그래밍/파이써언] - [파이썬] Selenium - 헤드레스(Headless, 창 없는 백그라운드 실행) 모드

 

[파이썬] Selenium - 헤드레스(Headless, 창 없는 백그라운드 실행) 모드

헤드레스 모드란 창을 띄우지 않고 Selenium을 실행하는 기능입니다. from selenium import webdriver from selenium.webdriver.chrome.options import Options options = Options() options.add_argument('--headless') driver = webdriver.Chrome(o

hoood.tistory.com

 

728x90