I am going to scrape html contents on
http://ntry.com/#/scores/named_ladder/main.php with Scrapy
.
But, because of the site's Javascript
use and # , I guess I have to use
Selenium
(Python
) also.
I'd like to write my own code, but I am new to programming so I guess I need help;
I want to enter ntry.com first, and move to http://ntry.com/#/scores/named_ladder/main.php by clicking an anchor called
<body>
<div id="wrap">
<div id="container">
<div id="content">
<a href="/scores/named_ladder/main.php">사다리</a>
</div>
</div>
</div>
</body>
and then I want to scrape htmls on the changed page using Scrapy
.
How can I make a selenium
-blended Scrapy
spider?