gpt4 book ai didi

javascript - 如何调试casperJS中的javascript函数

转载 作者:行者123 更新时间:2023-11-28 11:12:44 25 4
gpt4 key购买 nike

如何在 CasperJS 中调试 javascript 函数(使用 evaluate)?

是否有类似于 alert() 的东西可用于在需要时在命令行上打印值?

最佳答案

尝试这样的事情:

// add this to the top of the script
casper.on('remote.message', function(msg) {
this.echo(msg);
})

casper.thenEvaluate(function() {
// and then add this to the evaluate to print a value
console.log('Testing...');
})

要将其与 try-catch 一起使用,请使用以下命令:

casper.thenEvaluate(function() {
try {
throw "Some error...";
} catch(err) {
console.log(err);
}
})

来源:CasperJS Documentation

关于javascript - 如何调试casperJS中的javascript函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18178094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com