閲覧して頂きありがとうございます。
最近Seleniumの勉強を始めた者です。
Yahooの検索タブをクリックさせたくて以下のコードを記載しましたが、検索タブがクリックされず、以下のエラーが表示されてしまいます。
AttributeError: 'WebDriver' object has no attribute 'find_element_by_class'
記載したコード
time.sleep(1)
driver.get("https://www.yahoo.co.jp/")
def search(word):
driver.find_element_by_name("p").send_keys(word)
driver.find_element_by_class("_63Ie6douiF2dG_ihlFTen rapid-noclick-resp").click()
search("サッカー")
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/01 05:14