Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你知道如何在 Selenium IDE 中查看脚本执行时间吗?我应该使用什么样的命令或选项?
提前致谢!
我想知道同样的事情,这就是我想出的。
storeEval | new Date().getTime() | startTime // The rest of your code here storeEval | new Date().getTime() | endTime storeEval | (${endTime} - ${startTime}) / 1000 | scriptExecutionTime echo | ${scriptExecutionTime} seconds |