selenium(2)
-
[pypi] chromedriver-autoinstaller
Selenium 개발시 Chrome가 계속 자동 업데이트되어 ChromeDriver 파일을 다운받아야 할때가 많은데 이 모듈을 사용하면 자동으로 다운로드 처리되니 좋을것 같다. ● Install pip install chromedriver-autoinstaller ● Usage import chromedriver_autoinstaller chromedriver_autoinstaller.install()
2021.12.08 -
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