四季報オンラインの検索窓にコードを打ち込み、送信したいです。
ただinputタグにtype要素しかなくidなどわかりやすいタグがありません。
このような場合どうしたらいいのですか?
python
1from selenium import webdriver 2import time 3 4driver = webdriver.Chrome("C:/users/detec/chromedriver") 5TARGET_URL = "https://shikiho.jp/" 6driver.get(TARGET_URL) 7time.sleep(2) 8 9xpath = "/html/body/input" 10search_box = driver.find_element_by_xpath(xpath).sendKeys("1401") 11search_box.submit() 12 13time.sleep(2) 14#search 15 16#read code 17 18#div class=code 19#div class="label default" 20#<div class="information" 21
###試したこと
xpath・cssセレクタを用いて要素指定
###結果
Message: no such element: Unable to locate element:
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/15 05:07
2021/07/15 05:46
2021/07/15 06:47
2021/07/15 07:07