seleniumを用いて、天気予報のデータを一定時間毎に取得することを考えております。
そこでwhile文によるループ処理を行ったところ、以下のようなエラーが出ました。
どなたか対処方法をご教示頂けないでしょうか。
ちなみに、python3.7, Macユーザーです。
"HTTPConnectionPool(host='127.0.0.1', port=52998): Max retries exceeded with url: /session/25cf63aae19271560b3a8d1df5739de3/url (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fb45553ec10>: Failed to establish a new connection: [Errno 61] Connection refused'))> "
python
1import time 2from selenium import webdriver 3 4url = "https://weather.yahoo.co.jp/weather/jp/13/4410.html" 5driver = webdriver.Chrome("/chromedriver") 6 7while True: 8 driver.get(url) 9 high = driver.find_element_by_class_name("high").text 10 low = driver.find_element_by_class_name("low").text 11 pict = driver.find_element_by_class_name("pict").text 12 print(high,low,pict) 13 driver.quit() 14 time.sleep(20)