為什麼這篇python工作dcard鄉民發文收入到精華區:因為在python工作dcard這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者Carlchen (backenfuerLily)看板Python標題[問題] Selenium...
我想要做到的是
step1.自動登入Dcard
step2.進入抽卡的page
step3.save page
一開始上網查到mechanize這個工具
http://wwwsearch.sourceforge.net/mechanize/documentation.html
不過在step1就卡關,因為
https://www.dcard.tw/login
找不到<form>的tag
所以我放棄了mechanize,上網查到了selenium這個工具
http://selenium-python.readthedocs.io/
用find_element_by_XXX()的方法做完了step1
不過在step2又卡關了
http://imgur.com/fNujpAJ
如圖
抽卡的page是在點擊紅色圈圈處會到的page
而紅色圈圈處對應的code是紅色框框處
我試過了
find_element_by_partial_link_text('card')
find_element_by_class_name('fa-book')
find_element_by_css_selector('i.fa.fa-book')
find_element_by_css_selector('i.fa-book')
結果都是
NoSuchElementException: Message: Unable to locate
element: {"method":"METHOD_NAME","selector":"XXX"}
而
find_element_by_class_name('fa fa-book')
結果是
InvalidSelectorException: message: The given selector
fa fa-book is either invalid or does not result in a WebElement.
The following error occurred:
InvalidSelectorError: Compound class names not permitted
請問大家這是發生了什麼問題?find_element_by_XXX()應該要怎麼寫?
還是用別的方法來寫會比較好寫?
假如後來有順利寫完step1~step3,有辦法排程讓程式每天固定執行一次嗎?
另外想問如果用jQuery做我這個需求會更簡單,更好做嗎?
以上謝謝
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 122.147.21.11
※ 文章網址: https://www.ptt.cc/bbs/Python/M.1462600069.A.E3A.html
※ 編輯: Carlchen (122.147.21.11), 05/07/2016 13:50:01
這個我有試過,只是它回傳的是第一個出現class='fa'的地方,也就是會到feedback的pa
ge,可惜不是我要前往的page
find_element_by_css_selector(
'li[ng-click*="onClickNavigationItem(\'dcard\')"]')
還是 NoSuchElementException...
不知道是怎麼回事@@
不過動態生成是什麼我不知道@@
另外還有個問題,selenium的作法是要打開browser
如果在server上跑(純文字介面),是不是就不會work了?可能要用別的工具來寫?
※ 編輯: Carlchen (122.147.21.11), 05/08/2016 20:32:16