我要刮 http://ntry.com/#/scores/named_ladder/main.php的html內容與Scrapy
。Scrapy使用Scrapy和硒的網站
但是,由於該網站的Javascript
使用和#,我想我必須使用 Selenium
(Python
)也。
我想寫我自己的代碼,但我是編程新手,所以我想我需要幫助;
我想先進入ntry.com,並通過點擊錨移動到http://ntry.com/#/scores/named_ladder/main.php稱爲
<body>
<div id="wrap">
<div id="container">
<div id="content">
<a href="/scores/named_ladder/main.php">사다리</a>
</div>
</div>
</div>
</body>
,然後我想刮使用Scrapy
更改的頁面上HTMLS。
我該如何製作一個selenium
-blended Scrapy
蜘蛛?
的可能的複製[硒與scrapy動態頁面(http://stackoverflow.com/questions/17975471/selenium-with-scrapy-for-dynamic-頁面) – damienc