반응형
Edge 엣지 검색어 자동 검색 파이썬 코드 간단 구현
- 코드 작성
from selenium import webdriver
import time
# create a new instance of the Edge browser
browser = webdriver.Edge()
# perform searches from 1 to 10
for i in range(1, 13):
browser.get('https://www.bing.com')
search_box = browser.find_element("name", 'q')
search_box.send_keys(str(i))
search_box.submit()
time.sleep(1) # wait for 1 second before moving to the next search
# close the browser window
browser.quit()
반응형