Chrome(2)
-
Chrome(크롬) 강제업데이트 차단
# 자동업데이트 중지 크롬의 업데이트 확인 간격을 0으로 설정 defaults write com.google.Keystone.Agent checkInterval 0 # 자동업데이트 실행 크롬 업데이트 확인 간격을 기본값 18000 으로 설정 defaults write com.google.Keystone.Agent checkInterval 18000 # 수동으로 업데이트 실행 1. Finder를 실행하고 Command + Shift + G 또는 "이동 -> 폴더로 이동" 선택 2. 경로 이동 /Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/Contents/Resources/ 또는 ~/Library/Google/GoogleSoftwareUp..
2021.04.19 -
Selenium
# Chrome 알림(Notification) 뜨지 않게 하기 chrome_options = Options() chrome_options.add_argument("--disable-notifications") ## or prefs = {"profile.default_content_setting_values.notifications" : 2} ## 1:allow notification, 2:block notification chrome_options.add_experimental_option("prefs",prefs) ## 첫번째(하나의) Element 반환 find_element_by_id find_element_by_name find_element_by_xpath find_element_by_link_..
2020.12.14