-
Python Selenium 환경설정 다운로드Python 2022. 7. 21. 09:22반응형
Selenium
!pip install selenium
WebDriver
https://chromedriver.chromium.org/
ChromeDriver - WebDriver for Chrome
WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server that implements the W3C WebDriver
chromedriver.chromium.org
웹 버전에 맞는 driver다운로드
운영체제에 맞는 driver 다운로드
다운로드 받은 파일
Jupyter에 업로드하기
사용하기
from selenium import webdriver as wb
반응형'Python' 카테고리의 다른 글
Python Pandas Series 배열 (0) 2022.08.03 Python webCrawling 웹크롤링이란? requests / BeautifulSoup / select_one / (0) 2022.07.18 Python 파이썬 기초 Selenium 로딩 기다리기 (0) 2022.06.07 Python 파이썬 기초 class 부모 클래스 상속 (0) 2022.05.27 Python 파이썬 기초 코드 테스트 unit assert 사용 (0) 2022.05.20