いつもお世話になっております。
ヤフーから画像を一枚だけスクレイピングしたいと思い
BeautifulSoupを使ったコードを書いてみましたが、
yahooのサイトの構造が
javascriptでも作られてるとの事で
BeautifulSoupではできないという事で
seleniumを使うことになりました。
python
1from selenium import webdriver 2from selenium.webdriver.chrome.options import Options 3from bs4 import BeautifulSoup 4 5 6 7chrome_path = r"C:\Users\81809\Downloads\chromedriver_win32\chromedriver.exe" 8 9options = Options() 10options.add_argument("--incognito") 11 12driver = webdriver.Chrome(executable_path = chrome_path, options = options) 13 14 15url = "https://search.yahoo.co.jp/image" 16driver.get(url) 17 18query = "りんご" 19driver.get(url) 20search_box = driver.find_element_by_class_name("SearchBox__searchInput") 21search_box.send_keys(query) 22search_box.submit() 23 24 25values = driver.find_element_by_class_name("sw-Thumbnail__innerImage sw-Thumbnail__innerImage--width rapidnofollow") 26print(values)
こちらを実行すると
raise exception_class(message, screen, stacktrace) selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":".sw-Thumbnail__innerImage sw-Thumbnail__innerImage--width rapidnofollow"} (Session info: chrome=92.0.4515.131)
こう出てしまいます。
ブラウザで開発者ツールを開き
欲しい画像のクラスはこうなってます
クラス名はコピペしてるので間違いはないと思います。
どちらを改善すればエラーが出なくなるか
教えていただけると幸いです。
宜しくお願い致します。
試したこと
python
1print(driver.page_source)
で中身を開き
ターミナルないでクラス名の検索をかけてもでてきませんでした。
seleniumの使い方は自分なりに調べてコードを書いてみたのですが
なかなかうまくいかず
エラーの内容でググってみても私の理解力がないせいか
参考にできませんでしたので
こちらで質問させていらただきました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/18 10:20