728x90
Python에서 웹자동화 위해서 selenium 사용해 보자.
google를 열고 검색어를 입력하고 조회하는 예제를 만들어 보자.
※ 소스
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
import time
driver = webdriver.Chrome()
elem = driver.find_element(By.NAME, "q")
elem.send_keys("chatGPT")
elem.send_keys(Keys.RETURN)
time.sleep(10)
※ 실행화면
728x90
반응형
'Software > Python' 카테고리의 다른 글
Python 시작하기 - Mysql 활용 (0) | 2024.07.07 |
---|---|
Python 시작하기 - BeautifulSoup이용 웹크롤링 (0) | 2024.07.02 |
Python 시작하기 - selenium 소개 (0) | 2024.07.02 |
Python 시작하기 - JSON 변환 (0) | 2024.06.23 |
Python 시작하기 - CSV 저장 (0) | 2024.06.23 |