Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

크롬 업데이트로 인한 오류? #7

Open
littlepitta opened this issue Sep 19, 2023 · 2 comments
Open

크롬 업데이트로 인한 오류? #7

littlepitta opened this issue Sep 19, 2023 · 2 comments

Comments

@littlepitta
Copy link

최근 webdriver 업데이트인지 selenium 업데이트인지 파이썬 실행시 오류가 납니다.
혹시 방법을 알고 계신가요??

@Allesfeliz
Copy link

chromedriver업데이트로 인해 발생하는 오류 같습니다. 저도 방법을 찾고 있는데 잘 안되네요 ㅜ

@phj799
Copy link

phj799 commented Oct 13, 2023

쉬운 방법과 수동으로 버전을 맞추는 방법이 있어요.

  • 쉬운 방법
    #8을 참고하면 requirements.txt 파일에서 버전 정보만 수정한 후
    pip install -r requirements.txt 한다면 특정 버전이 아닌 최신 버전으로 설치되어 쉽게 해결이 될 것 같습니다. chrome이 최신버전이라면 아마 chromedriver와 동일한 버전으로 맞춰질 것 같아요.

  • 수동으로 버전을 맞추는 방법
    image
    크롬 버전에 맞게 아래 두 사이트 중에서 chromedriver를 설치합니다.
    https://chromedriver.chromium.org/downloads
    https://googlechromelabs.github.io/chrome-for-testing/#stable

이후 설치받은 chromedriver.exe의 경로로 srt_reservation/main.py의 chromedriver_path변수를 변경해주세요.
ex)
chromedriver_path = r'C:\project\srtBooking\chromedriver.exe'

selenium 버전 또한 업데이트가 필요한데 현재 정상적으로 동작하는 아래 버전으로 설치하세요.
pip install selenium==4.9.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants