首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Nightmare.js条件浏览

Nightmare.js条件浏览
EN

Stack Overflow用户
提问于 2016-06-16 11:15:22
回答 1查看 3.3K关注 0票数 5

我正在尝试理解如何使用“if-然后”逻辑来创建一个nightmare.js脚本。例如

代码语言:javascript
复制
var Nightmare = require('nightmare');
var nightmare = Nightmare({
    show: true,
    paths: {
        userData: '/dev/null'
    }
});

nightmare
    .goto('http://www.example.com/')
    .wait('h1')
    .evaluate(function() {
        return document.querySelector('title').innerText;
    })
    // here: go to url1 if title == '123' otherwise to url2
    .end()
    .then(function() {
        console.log('then', arguments);

    }).catch(function() {
        console.log('end', arguments);
    });

根据评估的结果,如何使这个脚本转到不同的url?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2016-06-21 17:34:01

因为梦魇是then的,所以你可以像普通的承诺一样从.then()中返回它来链接它。

代码语言:javascript
复制
var Nightmare = require('nightmare');
var nightmare = Nightmare({
  show: true,
  paths: {
    userData: '/dev/null'
  }
});

nightmare
  .goto('http://www.example.com/')
  .wait('h1')
  .evaluate(function() {
    return document.querySelector('title')
      .innerText;
  })
  .then(function(title) {
    if (title == 'someTitle') {
      return nightmare.goto('http://www.yahoo.com');
    } else {
      return nightmare.goto('http://w3c.org');
    }
  })
  .then(function() {
    //since nightmare is `then`able, this `.then()` will
    //execute the call chain described and returned in 
    //the previous `.then()`
    return nightmare
      //... other actions...
      .end();
  })
  .then(function() {
    console.log('done');
  })
  .catch(function() {
    console.log('caught', arguments);
  });

如果您想要一个更同步的逻辑,您可能需要考虑将发电机voco结合使用。例如,上面用vo重写

代码语言:javascript
复制
var Nightmare = require('nightmare');
var vo = require('vo');

vo(function * () {
  var nightmare = Nightmare({
    show: true,
    paths: {
      userData: '/dev/null'
    }
  });

  var title = yield nightmare
    .goto('http://www.example.com/')
    .wait('h1')
    .evaluate(function() {
      return document.querySelector('title')
        .innerText;
    });

  if (title == 'someTitle') {
    yield nightmare.goto('http://www.yahoo.com');
  } else {
    yield nightmare.goto('http://w3c.org');
  }

  //... other actions...

  yield nightmare.end();
})(function(err) {
  if (err) {
    console.log('caught', err);
  } else {
    console.log('done');
  }
});
票数 11
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/37857545

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档