seleniumを使用してのaspページでのスクレイピングが出来ません。
以下のプログラムをSpyderで実行しましたが、エラーが出てしまいます。
やりたいことは、
①ログインボタンの要素をcssセレクタから取得
②クリック
するだけです。
解決法を教えてほしいです。
python3.7
1from selenium import webdriver 2import time 3 4driver = webdriver.Chrome('C:/Users/name/Desktop/chromedriver.exe') 5driver.get('http://www.moji-cont.com/index2.asp') 6 7time.sleep(2) #2秒遅らせる 8login_elm=driver.find_element_by_css_selector("#login") 9login_elm.click() 10
エラー内容
raise exception_class(message, screen, stacktrace) NoSuchElementException: no such element: Unable to locate element: {"method":"css selector","selector":"#login"} (Session info: chrome=77.0.3865.90)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/22 04:44
2019/09/22 04:51
2019/09/22 05:06