반응형
linux 환경에서 chrome driver 사용시 발생할 수 있는 에러입니다.
path, version 모두 맞췄으면 아래 options을 추가만 해주시면 됩니다.
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--headless")
# linux 환경에서 필요한 option
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--disable-dev-shm-usage')
끝!
'개발' 카테고리의 다른 글
[Selenium] 엘리먼트 속성 가져오기 (0) | 2022.04.20 |
---|---|
[Selenium] NoSuchElementException (0) | 2022.04.15 |
[Selenium] DeprecationWarning: executable_path has been deprecated, please pass in a Service object (0) | 2022.04.13 |
JWT token expire하는 법 (0) | 2022.03.24 |
EACCES: permission denied, unlink '/usr/local/bin/code' (0) | 2022.03.19 |