31

を使用してwaitFor()います。コードは次のとおりです。

casper.waitFor(function check() {
    return this.evaluate(function() {
        return this.evaluate(someFunction, 'variable 1','variable 2','variable 3') === 'yes';
    });
}, function then() {
    console.log('Done');
});

これをコンソール出力として取得しています

Wait timeout of 5000ms expired, exiting.

タイムアウトを増やすにはどうすればよいですか?

編集:コードを次のように変更しました

 casper.waitFor(function check() {
        return this.evaluate(function() {
            return this.evaluate(someFunction, 'variable 1','variable 2','variable 3') === 'yes';
        });
    }, function then() {
        console.log('Done');
    },10000);

次のエラーが表示されます。

CasperError: Invalid timeout function, exiting.
    C:/filename:1720 in _check
4

3 に答える 3

58

それを使用して、すべてのwait()関数のタイムアウトを増やします: casper.options.waitTimeout = 20000; (20秒)

于 2014-05-20T12:12:56.983 に答える
27

ここで述べたように、

サインは

waitFor(Function testFx[, Function then, Function onTimeout, Number timeout])

そのため、タイムアウトを指定する追加の引数があります。

casper.waitFor(function check() {
    //...
    });
}, function then() {
     //...
}, function timeout() { 
//...
}, TIMEOUT_IN_MS);
于 2013-08-13T10:29:06.953 に答える