前提・実現したいこと
Googleformの入力を自動化したいと考えており、その質問の中にtype=date属性を持つinputタグがあったとします。
そのとき、そのinputタグを入力して送信したいです。
type=text属性の他の入力欄に関しては、send_keys()でうまくできたので、同様の方法でできるかと思ったのですが、うまくできませんでした。
Googleformは以下のURLにあります(該当箇所を抜粋したものがPythonコードの下にあります。)
https://forms.gle/PDJ5kXwTJDRZs2Ht9
発生している問題・エラーメッセージ
Message: element not interactable
該当のソースコード
Python
1from selenium.webdriver import Chrome, ChromeOptions 2from selenium.webdriver.common.by import By 3from selenium.webdriver.common.keys import Keys 4from selenium.webdriver.support.ui import WebDriverWait 5from selenium.webdriver.support import expected_conditions as EC 6 7# Chromeのドライバーを得る 8options = ChromeOptions() 9options.headless = True 10driver = Chrome(options=options) 11 12# Googleフォームにアクセス 13url = 'https://forms.gle/PDJ5kXwTJDRZs2Ht9' 14driver.get(url) 15print('Googleフォームにアクセスしました') 16 17input_list = driver.find_elements_by_css_selector('.exportInput') 18btn = driver.find_element_by_css_selector('.appsMaterialWizButtonPaperbuttonLabel') 19 20# 日付の入力 21input_list[0].click() 22input_list[0].send_keys('2020-07-29') 23 24# input_list[0].click() 25# input_list[0].send_keys('2020') 26# input_list[0].send_keys(Keys.TAB) 27# input_list[0].send_keys('07') 28# input_list[0].send_keys(Keys.TAB) 29# input_list[0].send_keys('29') 30 31# driver.execute_script('document.getElementByTagName("input").data-initial-value = "2020-07-30"') 32 33# 時の入力 34input_list[1].click() 35input_list[1].send_keys('13') 36 37# 分の入力 38input_list[2].click() 39input_list[2].send_keys('15') 40 41# 体温の入力 42input_list[3].click() 43input_list[3].send_keys('37.1') 44 45# フォームの送信 46btn.click() 47print('フォームを送信しました') 48 49driver.quit() 50
該当箇所を抜粋したHTMLが以下になります。
HTML
1<div class="quantumWizTextinputPaperinputInputArea"> 2<input type="date" class="quantumWizTextinputPaperinputInput exportInput" jsname="YPqjbf" autocomplete="off" tabindex="0" aria-labelledby="i5" disabled data-initial-value="" /> 3</div>
試したこと
コメントアウトにあるように、Tabキーを使いながらやったり、Javascriptから実行させようとしたりしたのですが、どれもうまくきませんでした。
補足情報(FW/ツールのバージョンなど)
selenium 3.141.0
Chrome
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。