首页 > 其他 > 详细

在Scrapy中使用Selenium

时间:2020-01-18 01:08:52      阅读:98      评论:0      收藏:0      [点我收藏+]

1. selenium在scrapy中的使用流程

  • 重写爬虫文件的构造方法,在该方法中使用selenium实例化一个浏览器对象(因为浏览器对象只需要被实例化一次)

  • 重写爬虫文件的closed(self,spider)方法,在其内部关闭浏览器对象。该方法是在爬虫结束时被调用

  • 重写下载中间件的process_response方法,让该方法对响应对象进行拦截,并篡改response中存储的页面数据

  • 在配置文件中开启下载中间件

2. 代码展示

- 爬虫文件:

 class WangyiSpider(RedisSpider):
     name = ‘wangyi‘
     #allowed_domains = [‘www.xxxx.com‘]
     start_urls = [‘https://news.163.com‘]
     def __init__(self):
         #实例化一个浏览器对象(实例化一次)
         self.bro = webdriver.Chrome(executable_path=‘/Users/bobo/Desktop/chromedriver‘)
 ?
     #必须在整个爬虫结束后,关闭浏览器
     def closed(self,spider):
         print(‘爬虫结束‘)
         self.bro.quit()

技术分享图片技术分享图片

- 中间件文件:

 from scrapy.http import HtmlResponse    
     #参数介绍:
     #拦截到响应对象(下载器传递给Spider的响应对象)
     #request:响应对象对应的请求对象
     #response:拦截到的响应对象
     #spider:爬虫文件中对应的爬虫类的实例
     def process_response(self, request, response, spider):
         #响应对象中存储页面数据的篡改
         if request.url in[‘http://news.163.com/domestic/‘,‘http://news.163.com/world/‘,‘http://news.163.com/air/‘,‘http://war.163.com/‘]:
             spider.bro.get(url=request.url)
             js = ‘window.scrollTo(0,document.body.scrollHeight)‘
             spider.bro.execute_script(js)
             time.sleep(2)  #一定要给与浏览器一定的缓冲加载数据的时间
             #页面数据就是包含了动态加载出来的新闻数据对应的页面数据
             page_text = spider.bro.page_source
             #篡改响应对象
             return HtmlResponse(url=spider.bro.current_url,body=page_text,encoding=‘utf-8‘,request=request)
         else:
             return response

技术分享图片技术分享图片

- 配置文件:

 DOWNLOADER_MIDDLEWARES = {
     ‘wangyiPro.middlewares.WangyiproDownloaderMiddleware‘: 543,
 ?
 }

在Scrapy中使用Selenium

原文:https://www.cnblogs.com/yzg-14/p/12207872.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!