使用Scrapy模拟JavaScript按钮单击

时间:2016-04-26 19:52:22

标签: javascript python scrapy web-crawler

我的目的是在此网页上运行scrapy抓取工具:http://visit.rio/en/o-que-fazer/outdoors/。但是,id =“container”上有一些资源只能通过JavaScript按钮(“VER MAIS”)加载。我读过一些关于硒的东西,但我什么都没有。

1 个答案:

答案 0 :(得分:7)

你看对了,你最好的选择是使用Firefox浏览器进行scrapy + selenium,或者使用像PhantomJS这样的无头浏览器来加快抓取速度。

改编自https://stackoverflow.com/a/17979285/2781701

的示例
import scrapy
from selenium import webdriver

class ProductSpider(scrapy.Spider):
    name = "product_spider"
    allowed_domains = ['visit.rio']
    start_urls = ['http://visit.rio/en/o-que-fazer/outdoors']

    def __init__(self):
        self.driver = webdriver.Firefox()
    def parse(self, response):
        self.driver.get(response.url)

        while True:
            next = self.driver.find_element_by_xpath('//div[@id="show_more"]/a')

            try:
                next.click()

                # get the data and write it to scrapy items
            except:
                break

        self.driver.close()