当方、スクレイピングを学ぼうと思い、ピンポイントで場所を探すcordを書いておりましたが、
どうしてもこの先のリンクへの飛び方がわかりません。
教えて頂けましたら幸いです。
Python
1 2from selenium import webdriver 3from selenium.webdriver.common.keys import Keys 4 5chrome = webdriver.Chrome("ファイル") 6 7location = input("郵便番号:") 8 9chrome.get('https://weather.yahoo.co.jp/weather/jp/3.html?day=1') 10 11search_box = chrome.find_element_by_id('searchText') 12search_words = location 13search_box.send_keys(''.join(search_words)) 14 15chrome.find_element_by_id('yjw_button_search').click() 16コード
この先のh2>a>hrefのリンク先に飛びたいのですがどうしたらよいのでしょうか?
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー