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 selenium url 페이지 존재 여부 검사 (1) | 2024.11.20 |
---|---|
python 윈도우 작업표시줄 높이와 가로크기를 알수있는 코드 (0) | 2024.11.11 |
python 엑셀 윈도우창 크기및 위치 조절하는 코드 (0) | 2024.11.11 |