IT/프로그래밍
파이썬 자동화 소스 코드 - 내 일을 바꾸는 업무 자동화 12장
nutrient
2021. 5. 29. 14:59
728x90
728x170
from selenium import webdriver
opts = webdriver.ChromeOptions()
opts.add_argument('headless')
opts.add_argument('window-size=1920,1080')
driver = webdriver.Chrome('/Users/Alghost/Downloads/chromedriver',options=opts)
try:
driver.get('http://naver.com')
print(driver.title)
except Exception as e:
print(e)
finally:
driver.quit()
728x90
그리드형