'ChromeOptions' object has no attribute 'headless' 해결
2023. 11. 8.
> py app.py 'ChromeOptions' object has no attribute 'headless' Traceback (most recent call last): File "D:\MyWork\python\app.py", line 32, in driver.get(link) AttributeError: 'NoneType' object has no attribute 'get' 사용 버전 > pip list selenium 4.15.2 undetected-chromedriver 3.5.3 undetected-chromedriver 패키지를 사용한 프로그램을 실행하려고 하니깐 headless 속성이 없다고 나온다. selenium 4.13 부터 headless 가 지원이 안된다고 한다. (https:..