from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import chromedriver_autoinstaller
import time
chrome_path = chromedriver_autoinstaller.install()
driver = webdriver.Chrome(chrome_path)
# 크롤링할 사이트 호출
driver.get("http://www.python.org")
# page_source 가져오기
soup = BeautifulSoup(driver.page_source, 'html.parser')
'크롤링 > 셀레늄' 카테고리의 다른 글
셀레늄 - implicitly_wait vs explicitly_wait (0) | 2021.09.24 |
---|---|
Headless Chrome & chromedriver options (0) | 2021.09.22 |
PhantomJS (0) | 2021.09.22 |
셀레늄 - driver 다루는 코드 (0) | 2021.09.22 |
셀레늄 - driver.페이지 소스보기 (0) | 2021.09.22 |