[파이썬] Selenium - 터미널창에 표시되는 이상한 문구 없애기!
에러
셀레니움 스크립트 실행 시 Devtools listening on 과 같은 문구가 발생하는 현상
해결
아래와 같은 코드를 추가해주면 해결 가능합니다.
from selenium.webdriver.support import expected_conditions as EC
options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
728x90
'플그래밍 > 파이써언' 카테고리의 다른 글
[파이썬] Selenium - YES24티켓 오픈일 순 정보 추출하기! (0) | 2022.12.14 |
---|---|
[파이썬] Selenium - 웹사이트 스크롤풀샷 캡쳐 법 (0) | 2022.12.14 |
[파이썬] Pyinstaller - input()이 작동 안 할 경우! (0) | 2022.12.14 |
[파이썬] Selenium - NoSuchElementException 에러 해결 방법 (0) | 2022.12.13 |
[파이썬] ModuleNotFoundError: No module named 'Tkinter' (0) | 2022.12.11 |