Chickenfoot JS问题

时间:2009-12-15 12:15:55

标签: javascript chickenfoot

我正在尝试让firefox自动访问一组网页并以某种方式向我报告加载每个页面需要多少钱。到目前为止,我最好的选择似乎是ChickenFoot扩展。但是,以下程序始终输出相同的加载时间(3毫秒):

function end_timer(start){
    stop = new Date()
    output("Load time:" + parseInt(stop.getTime() - start.getTime()))
}


start = new Date()
go("facebook.com")
whenLoaded(end_timer(start), this)

有没有人有任何想法?谢谢!

1 个答案:

答案 0 :(得分:0)

好的ppl,我找到了..我只是粘贴了更正的代码,以防万一有人想在将来使用它:

function end_timer(start){
    stop = new Date()
    output("Load time:" + parseInt(stop.getTime() - start.getTime()))
}


start = new Date()
go("facebook.com")
wait()
end_timer(start)