5

「if-then」ロジックを使用して nightmare.js スクリプトを作成する方法を理解しようとしています。例えば

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 に移動させるにはどうすればよいですか?

4

1 に答える 1