mac) chromedriver 설치 (feat.homebrew)

❍ 개발환경

 홈브루로 크롬 드라이버 설치

~ brew search chromedriver

~ brew install chromedriver

~ brew upgrade google-chrome

크롬드라이버의 격리 속성확인과 격리 속성제거

➜  ~ cd /opt/homebrew/bin # 홈브루로 설치한 chromedriver 경로
➜  ~ xattr chromedriver # chromedriver 속성확인
com.apple.quarantine
➜ ~ xattr -d com.apple.quarantine $(which chromedriver) # 격리속설제거
Comment