Electron

Nightmare 爬虫(1)

2018-01-02  本文已影响126人  美味小鱼
nightmare导图

简介

Nightmare 可以用来做测试和爬虫,它提供了一些很简单的 API 比如(type click goto)等,并让用户可以像写同步代码那样来编写自己的逻辑,底层使用 Electron,

API 代码示例

举个简单的例子,搜狗提供了微信公众号文章的搜索,那我们就来做一个简单的实验。

Select

首先用 chrome 或者火狐开发者工具找到搜狗的搜索框和搜索按钮的select

搜索框有个 id 叫 query,锁定。
这个按钮有个 class 叫 swz ,查了一下整个页面只有一个,锁定。

代码

import Nightmare from 'nightmare';
const nightmare = Nightmare({ show: true });

nightmare
  .goto('https://weixin.sogou.com')
  .type('#query', '爬虫')
  .click('#swz')
  .wait('.news_list')
  .evaluate(()=>{
       let res = {}
        res.urls = []
       document.querySelectorAll('.txt-box h3 a').forEach((el,index)=>{
         res.urls.push(el.href)
       })
      res.next = document.querySelector('#sogou_next').href
      return res
      })
  .end()
  .then(console.log)
  .catch((error) => {
    console.error('Search failed:', error);
  });
let select = '.txt-box h3 a'
......
.evaluate(()=>{
       let res = {}
        res.urls = []
       document.querySelectorAll(select).forEach((el,index)=>{
         res.urls.push(el.href)
       })
      res.next = document.querySelector('#sogou_next').href
      return res
      },select)

完整例子

这是我用 ts 写的一个测试代码

import * as Nightmare from 'nightmare'
import { ChromeSetting } from './setting'
import * as EventEmitter from 'events'



class Night {
  setting:any
  SOGOURL:string = 'http://weixin.sogou.com'
  ev:any
  constructor(setting:any){
    this.ev = new EventEmitter()
    if(setting){
      this.setting = setting
    }else{
      this.setting = ChromeSetting
      console.log(this.setting)
    }

  }

  doSearchByKeyWord(key_word:string){
    let night = Nightmare(this.setting)
    return night.goto(this.SOGOURL)
      .type('#query',key_word)
      .click('.swz')
      .wait('.news-list')
      .evaluate(()=>{
       let res = {}
        res.urls = []
       document.querySelectorAll('.txt-box h3 a').forEach((el,index)=>{
         res.urls.push(el.href)
       })
      res.next = document.querySelector('#sogou_next').href
      return res
      })
      .end()
      .then((res)=>{
        console.log(res)
        this.ev.emit('searchResult',res)
      })


  }

  parseUrl(res:any){
    console.log(res.next)
    let night = Nightmare(this.setting)
    return night.goto(res.next)
      .wait('.news-list')
      .evaluate(()=>{
       let res = {}
        res.urls = []
       document.querySelectorAll('.txt-box h3 a').forEach((el,index)=>{
         res.urls.push(el.href)
       })
      res.next = document.querySelector('#sogou_next').href
      return res
      })
      .end()
      .then((res)=>{
        console.log(res)
        this.ev.emit('parseUrl',res)
      })


  }

  goToBaiDu(url:any){
    let night = Nightmare(this.setting)
    return night.goto(url)
      .evaluate(()=>{
        //浏览器环境,执行浏览器部分操作
        return document.title
      })
      .end()
      .then((title)=>{
        //返回的数据进入 node 环境,进行数据处理

      })

  }
}

let night =new Night()
night.doSearchByKeyWord('爬虫')

night.ev.on('searchResult',(res)=>{
  night.parseUrl(res)
})

night.ev.on('parseUrl',(res)=>{
  console.log(res)
})

效果

中途调试太多次,没搜狗禁了,哈哈

这是再打开了浏览器的情况下,不是测试环境可以关掉浏览器选项
上一篇下一篇

猜你喜欢

热点阅读