"Selenium"의 두 판 사이의 차이

wwiki
이동: 둘러보기, 검색
26번째 줄: 26번째 줄:
 
한글: https://www.selenium.dev/documentation/ko/
 
한글: https://www.selenium.dev/documentation/ko/
 
[[분류:라이브러리]]
 
[[분류:라이브러리]]
 +
[[분류:네트워크]]

2021년 10월 28일 (목) 06:59 판

설치

$ pip3 install selenium

크롬 드라이버 설치

데비안 계열

$ sudo apt install chromium-chromedriver

버전이 맞지 않을 경우 수동다운로드: https://chromedriver.chromium.org/downloads

샘플코드

from selenium import webdriver

# 드라이버 생성
# which chromedriver 의 위치를 넣어준다.
driver = webdriver.Chrome("/usr/bin/chromedriver")
driver.get("http://google.com")
html = driver.page_source
driver.close()

외부링크

selenium Web Driver 개발문서: https://selenium.dev/documentation/en/webdriver/

한글: https://www.selenium.dev/documentation/ko/