はじめまして。現在pythonのseleniumを使い、サイトへの自動ログインを試みております。
chormedriverでpython file.pyをすると無事ファイルは開くのですが、ログイン・パスが自動入力されるはずが何度行なっても入力が行われません。
エラー文にはclassに対するエラーが出ておりますが、エラー解消を特定出来ておりません。
どなたかご教示頂けますでしょうか?
from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.common.keys import Keys import urllib.parse import time driver = webdriver.Chrome("/Users/***/chromedriver") driver.get("https://***/accounts/login/") #ログインID・PWを入力 elem_search_word = driver.find_element_by_class_name("_2hvTZ") elem_search_word.send_keys("****") password = driver.find_element_by_name('password') password.send_keys("****") password.send_keys(Keys.ENTER) driver.implicitly_wait(5)
File "instagram.py", line 14, in <module> elem_search_word = driver.find_element_by_class_name("_2hvTZ") File "/Users/***/.pyenv/versions/3.7.4/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 564, in find_element_by_class_name return self.find_element(by=By.CLASS_NAME, value=name) File "/Users/***/.pyenv/versions/3.7.4/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 978, in find_element 'value': value})['value'] File "/Users/***/.pyenv/versions/3.7.4/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute self.error_handler.check_response(response) File "/Users/***/.pyenv/versions/3.7.4/lib/python3.7/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response raise exception_class(message, screen, stacktrace) selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"class name","selector":"_2hvTZ"} (Session info: chrome=77.0.3865.120) (Driver info: chromedriver=2.32.498537 (cb2f855cbc7b82e20387eaf9a43f6b99b6105061),platform=Mac OS X 10.14.6 x86_64)
<div class="EPjEi"> <form class="HmktE" method="post"> <div class=" Igw0E IwRSH eGOV_ _4EzTm FBi-h "> </div> <div class="-MzZI"> <div class="_9GP1n "> <label class="f0n8F "> <span class="_9nyy2">電話番号、ユーザーネーム、メールアドレス</span> <input class="_2hvTZ pexuQ zyHYP" aria-label="電話番号、ユーザーネーム、メールアドレス" aria-required="true" autocapitalize="off" autocorrect="off" maxlength="75" name="username" type="text" value=""> </label> <div class="i24fI"> </div> </div> </div> <div class="-MzZI"> <div class="_9GP1n "> <label class="f0n8F "> <span class="_9nyy2">パスワード</span> <input class="_2hvTZ pexuQ zyHYP" aria-label="パスワード" aria-required="true" autocapitalize="off" autocorrect="off" name="password" type="password" value=""></label> <div class="i24fI"></div></div></div> <div class=" Igw0E IwRSH eGOV_ _4EzTm bkEs3 CovQj jKUp7 DhRcB "> <button class="sqdOP L3NKy y3zKF " disabled="" type="submit"> <div class=" Igw0E IwRSH eGOV_ _4EzTm ">ログイン</div></button></div> <div class="K-1uj Z7p_S"><div class="s311c"></div><div class="_0tv-g">または</div><div class="s311c"></div></div> <div class=" Igw0E IwRSH eGOV_ _4EzTm bkEs3 CovQj jKUp7 DhRcB "> <button class="sqdOP yWX7d y3zKF " type="button"> <span class="coreSpriteFacebookIcon AeB99"></span> <span class="KPnG0">Facebookでログイン</span></button></div> <a class="_2Lks6" href="/accounts/password/reset/">パスワードを忘れた場合</a></form></div>
以上よろしくお願い致します。
エラーが出ているのであれば、表示されている全ての情報をご提示ください。
該当htmlとエラー内容追加をしました。
よろしくお願い致します。
自分で試していないので、確たることは言えないのですが、私が調査するのであれば、
http://nekoyukimmm.hatenablog.com/entry/2017/05/09/090117
この辺や、複数要素が該当するので、find_elements_by_class_nameを利用してみるでしょうか。