Phantom

jinkyung·2021년 3월 16일
0

Python

목록 보기
17/19
post-custom-banner

눈에 안보이게 실행
크롬으로 테스트하고 phantom으로 실행

from selenium import webdriver

# driver = webdriver.PhantomJS(executable_path="../tools/phantomjs-2.1.1-windows/phantomjs-2.1.1-windows/bin/phantomjs.exe")
driver = webdriver.PhantomJS()
driver.get("https://www.naver.com")
driver.save_screenshot("./driverImage/phantom_Naver.jpg")
print("네이버 이미지 수집")
driver.implicitly_wait(2)
driver.get("https://www.daum.net")
driver.save_screenshot("./driverImage/phantom_Daum.jpg")
print("다음 이미지 수집")

post-custom-banner

0개의 댓글