일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 순수함수
- slicing [::-1]
- Airflow
- decorator
- reverse v.s. reversed
- S3
- 생각
- 함수형 프로그래밍
- PIP
- boto3
- 고차함수
- r-string
- blinker
- Python
- [초급(예비) 개발자 오픈소스 실무 역량강화 교육]
- selenium-wire
- pandas
- timestamp
- sort(reverse=True) v.s. reverse
- ds_store
- OS
- sort v.s. sorted
- 코딩 테스트
- functools.wraps
- CI/CD
- 쿼리
- os.path
Archives
- Today
- Total
공부일지
[Python]eprecationWarning: executable_path has been deprecated, please pass in a Service object 본문
Computer/공부정리
[Python]eprecationWarning: executable_path has been deprecated, please pass in a Service object
이르리의 공부일지 2023. 10. 26. 15:39오늘의 Warning
eprecationWarning: executable_path has been deprecated, please pass in a Service object
selenium 코드 작성하다가 출력된 문구이다.
error는 아니지만 불편하다!
뭐가 문제일까?
버전에 맞게 새로운 코드 방식으로 작성하라는 주의사항이다.
안 고쳐도 큰 문제는 없지만
공식문서 보고 고쳐주면 사라지는 주의문구이다.
참고 사이트
https://www.selenium.dev/documentation/webdriver/troubleshooting/upgrade_to_selenium_4/
Upgrade to Selenium 4
Are you still using Selenium 3? This guide will help you upgrade to the latest release!
www.selenium.dev
'Computer > 공부정리' 카테고리의 다른 글
[AWS S3]이미지 덮어씌워진 문제해결 (0) | 2023.11.02 |
---|---|
[Python]예외처리 시 에러메시지 보기 (0) | 2023.10.26 |
[Python]IndentationError: unindent does not match any outer indentation level (0) | 2023.10.26 |
[Python]pymysql.err.DataError: (1265, "Data truncated for column 'estimate_min' at row 1") (0) | 2023.10.26 |
[Python]TypeError: expected string or bytes-like object, got 'list' (0) | 2023.10.26 |