[selenium] chrome driver 팝업 비허용
2024. 8. 29. 17:18ㆍ개발/Python
def chrome_driver_dev():
options = webdriver.ChromeOptions()
# options.add_argument('--headless')
# options.add_argument('--no-sandbox')
# options.add_argument("--start-maximized")
options.add_argument('--disable-dev-shm-usage')
options.add_argument("--disable-notifications")
options.add_experimental_option('excludeSwitches', ['disable-popup-blocking'])
service = Service('/opt/homebrew/bin/chromedriver')
return webdriver.Chrome(service=service, options=options)
'개발 > Python' 카테고리의 다른 글
python pip install 위치 (1) | 2024.11.28 |
---|---|
ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none) (0) | 2024.11.28 |
python selenium url 페이지 존재 여부 검사 (1) | 2024.11.20 |
python 윈도우 작업표시줄 높이와 가로크기를 알수있는 코드 (0) | 2024.11.11 |
python 엑셀 윈도우창 크기및 위치 조절하는 코드 (0) | 2024.11.11 |