본문 바로가기

카테고리 없음

코랩에서 Selenium 사용 하기

개요 

  코랩에서 셀레이넘을 쓰기 위하여, 설치 및 import 하는 코드 간략히 메모

 

 

- 설치(20.08 코랩 기준)

 

!pip install Selenium

!apt-get update # to update ubuntu to correctly run apt install

!apt install chromium-chromedriver

 

 

 

- import 코드

 

from selenium import webdriver

 

chrome_options = webdriver.ChromeOptions()

chrome_options.add_argument('--headless') #내부 창을 띄울 수 없으므로 설정

chrome_options.add_argument('--no-sandbox')

chrome_options.add_argument('--disable-dev-shm-usage')

wd = webdriver.Chrome('chromedriver',chrome_options=chrome_options)

 

wd.get("http://naver.com")