tip. selenium으로 chrome 확장 프로그램 사용하기

on under tip
1 minute read

selenium으로 chrome 컨트롤시 확장 프로그램 적용하기

from selenium.webdriver.chrome.options import Options

chrome_options = Options()
chrome_options.add_extension('chrome_extention_path')

webdriver.Chrome('driver_path', chrome_options=chrome_optinos)

extention path 알아내는 방법

Where does Chrome store extensions?

윈도우 환경에서는 권한 오류가 발생한다.

Permission denied

권한 오류 해결법

stackoverflow

muo

아직 시간이 없어서 시도는 못해봤습니다.

tip
comments powered by Disqus