时间 多久打开seamonkey

时间 多久打开seamonkey

我正在尝试计算打开某些浏览器需要多长时间。

不工作。

 time seamonkey
 ReminderFox  clh(1)  {rmFx_cmdLine: [xpconnect wrapped nsICommandLine]}

时间是否只能通过简单的命令来运作?

答案1

这不是一个真正的答案,但可能是一个可以接受的解决方法,具体取决于您实际想要测量的内容。 以下方法将测量打开浏览器并显示 html 页面所需的时间(以毫秒为单位):

创建一个包含以下内容的 html 文件:

<html>
  <head>
   <script type="text/javascript">
    var readyMillis = new Date().getTime();
    var startMillis = new URL(window.location.href).searchParams.get("startTime");
    document.write("Started at: " + startMillis + "<br>Ready at: " + readyMillis + "<br>Time elapsed: " + (readyMillis - startMillis) + "ms");
   </script>
  </head>
</html>

...并运行(替换文件的路径):

firefox "file:///path/to/file.html?startTime=$(date +%s%N | cut -b1-13)"

我没有安装 seamonkey,但我用 Firefox 和 Chromium 测试过它,它应该适用于任何接受 URL 作为参数的浏览器。如果实例已在运行,它还会显示需要多长时间。

相关内容