前提・実現したいこと
ここに質問の内容を詳しく書いてください。
pythonでtweetdeckのスクレイピングを行っています。
ログイン→キーワード検索→「Tweet content」内の「From」カレンダーへ値を入力させたいんですが、何も入力されません。
ご教示いただけますでしょうか?
発生している問題・エラーメッセージ
エラー発生せず未入力のままスルーされます。
該当のソースコード
python
1from selenium import webdriver 2from selenium.webdriver.firefox.options import Options 3from selenium.webdriver.common.keys import Keys 4from datetime import datetime as dt 5import time 6 7river = webdriver.Firefox() # options=options) 8driver.get('https://mobile.twitter.com/login?hide_message=true&redirect_after_login=https%3A%2F%2Ftweetdeck.twitter.com%2F%3Fvia_twitter_login%3Dtrue') # tweetdeck login 9driver.implicitly_wait(10) 10id_ = driver.find_element_by_name('session[username_or_email]') # id textbox 11pw_ = driver.find_element_by_name('session[password]') # password textbox 12id_.send_keys('[id]') # input id 13pw_.send_keys('[pass]') # input password 14button_ = driver.find_element_by_xpath("//div[contains(@role,'button') and contains(@data-testid,'LoginForm_Login_Button')]") # login button 15button_.click() # login click 16driver.implicitly_wait(10) 17 18try: # judge login compleat 19 btntweet_ = driver.find_element_by_xpath("//header/div/button[contains(@title,'New Tweet')]") 20except: # login process again 21 username_ = driver.find_element_by_xpath("//div/input[contains(@name,'session[username_or_email]') and contains(@class,'r-30o5oe r-1niwhzg r-17gur6a r-1yadl64 r-deolkf r-homxoj r-poiln3 r-7cikom r-1ny4l3l r-t60dpp r-1dz5y72 r-fdjqy7 r-13qz1uu')]") 22 pass_ = driver.find_element_by_xpath("//div/input[contains(@name,'session[password]') and contains(@class,'r-30o5oe r-1niwhzg r-17gur6a r-1yadl64 r-deolkf r-homxoj r-poiln3 r-7cikom r-1ny4l3l r-t60dpp r-1dz5y72 r-fdjqy7 r-13qz1uu')]") 23 username_.send_keys('[id]') 24 pass_.send_keys('[pass]') 25 btn_ = driver.find_element_by_xpath("//div[contains(@role,'button') and contains(@data-testid,'LoginForm_Login_Button')]") 26 btn_.click() 27 driver.implicitly_wait(10) 28 29 30 31try: # judge visible search section 32 searchsection_ = driver.find_element_by_xpath("//section/div/div/header/div/div/input[contains(@class,'js-submittable-input js-column-title-edit-box column-title-edit-box Button--large txt-size--14 ')]") 33 searchsection_.send_keys(Keys.COMMAND,"a") 34 searchsection_.send_keys(Keys.DELETE) 35 searchsection_.send_keys('[tweet]') 36 targetsection_ = searchsection_.find_element_by_xpath("./ancestor::section") # get target section 37except: # left position [Search Twitter] 38 searchtxt_ = driver.find_element_by_xpath("//form/div/input[contains(@class,'js-app-search-input app-search-input search-input') and contains(@placeholder,'Search Twitter')]") 39 searchtxt_.send_keys('[tweet]') 40 btnsearch_ = driver.find_element_by_xpath("//form/div/a[contains(@class,'js-perform-search txt-size--14 search-input-perform-search')]") 41 btnsearch_.click() 42 targetinput_ = driver.find_element_by_xpath("//section/div/div/header/div/div/input[contains(@value,'[tweet]')]") # find target 43 targetsection_ = targetinput_.find_element_by_xpath("./ancestor::section") # get target section 44 45 # ここが入力されない 46driver.execute_script('document.evaluate("//input[contains(@placeholder,\'select date\')]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).value=\'%s\';' % dt.strptime('2021-07-07', '%Y-%m-%d').strftime('%-d %b %Y')) 47 48driver.quit()
試したこと
send_keysでは入力されませんでした。
chromeではsend_keysでも問題なく入力できました。
(サーバ上でwebdriverがおかしくなったのでfirefoxを使っています。)
補足情報(FW/ツールのバージョンなど)
macOSX
python3.9.6
firefox
あなたの回答
tips
プレビュー